Remove calls to perform under Haiku as this method is now private.
This commit is contained in:
@@ -131,12 +131,13 @@ BCursor_Instantiate(BCursor *Cursor, BMessage *data)
|
||||
* Returns: status_t
|
||||
* Effects:
|
||||
***********************************************************************/
|
||||
#ifndef __HAIKU__
|
||||
status_t
|
||||
BCursor_Perform(BCursor *Cursor, perform_code d, void *arg)
|
||||
{
|
||||
return Cursor->Perform(d, arg);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
||||
@@ -288,11 +288,13 @@ BPBitmap::IsLocked(void) const
|
||||
return BBitmap::IsLocked();
|
||||
}
|
||||
|
||||
#ifndef __HAIKU__
|
||||
status_t
|
||||
BPBitmap::Perform(perform_code d, void *arg)
|
||||
{
|
||||
return BBitmap::Perform(d, arg);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*-------------------------------------------------------------*/
|
||||
|
||||
|
||||
@@ -486,12 +486,13 @@ BStringView_GetSupportedSuites(BStringView *StringView, BMessage *data)
|
||||
* Returns: status_t
|
||||
* Effects:
|
||||
***********************************************************************/
|
||||
#ifndef __HAIKU__
|
||||
status_t
|
||||
BStringView_Perform(BStringView *StringView, perform_code d, void *arg)
|
||||
{
|
||||
return StringView->Perform(d, arg);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/***********************************************************************
|
||||
* Method: BStringView::_ReservedStringView1
|
||||
|
||||
@@ -702,12 +702,13 @@ BTextControl_SetFlags(BTextControl *TextControl, uint32 flags)
|
||||
* Returns: status_t
|
||||
* Effects:
|
||||
***********************************************************************/
|
||||
#ifndef __HAIKU__
|
||||
status_t
|
||||
BTextControl_Perform(BTextControl *TextControl, perform_code d, void *arg)
|
||||
{
|
||||
return TextControl->Perform(d, arg);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/***********************************************************************
|
||||
* Method: BTextControl::_ReservedTextControl1
|
||||
|
||||
Reference in New Issue
Block a user