fixed BStringView::GetSupportedSuites and BScrollBar::GetSupportedSuites

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17732 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-06-06 09:54:59 +00:00
parent 7cae4a1ee0
commit 7e2e6a5d4a
2 changed files with 4 additions and 4 deletions

View File

@ -972,9 +972,9 @@ BScrollBar::AllDetached()
// GetSupportedSuites
status_t
BScrollBar::GetSupportedSuites(BMessage *data)
BScrollBar::GetSupportedSuites(BMessage *message)
{
return B_ERROR;
return BView::GetSupportedSuites(message);
}
// Perform

View File

@ -259,9 +259,9 @@ BStringView::AllDetached()
status_t
BStringView::GetSupportedSuites(BMessage* data)
BStringView::GetSupportedSuites(BMessage* message)
{
return B_OK;
return BView::GetSupportedSuites(message);
}