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
|
* Returns: status_t
|
||||||
* Effects:
|
* Effects:
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
|
#ifndef __HAIKU__
|
||||||
status_t
|
status_t
|
||||||
BCursor_Perform(BCursor *Cursor, perform_code d, void *arg)
|
BCursor_Perform(BCursor *Cursor, perform_code d, void *arg)
|
||||||
{
|
{
|
||||||
return Cursor->Perform(d, arg);
|
return Cursor->Perform(d, arg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
|
|||||||
@@ -288,11 +288,13 @@ BPBitmap::IsLocked(void) const
|
|||||||
return BBitmap::IsLocked();
|
return BBitmap::IsLocked();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __HAIKU__
|
||||||
status_t
|
status_t
|
||||||
BPBitmap::Perform(perform_code d, void *arg)
|
BPBitmap::Perform(perform_code d, void *arg)
|
||||||
{
|
{
|
||||||
return BBitmap::Perform(d, arg);
|
return BBitmap::Perform(d, arg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*-------------------------------------------------------------*/
|
/*-------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|||||||
@@ -486,12 +486,13 @@ BStringView_GetSupportedSuites(BStringView *StringView, BMessage *data)
|
|||||||
* Returns: status_t
|
* Returns: status_t
|
||||||
* Effects:
|
* Effects:
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
|
#ifndef __HAIKU__
|
||||||
status_t
|
status_t
|
||||||
BStringView_Perform(BStringView *StringView, perform_code d, void *arg)
|
BStringView_Perform(BStringView *StringView, perform_code d, void *arg)
|
||||||
{
|
{
|
||||||
return StringView->Perform(d, arg);
|
return StringView->Perform(d, arg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* Method: BStringView::_ReservedStringView1
|
* Method: BStringView::_ReservedStringView1
|
||||||
|
|||||||
@@ -702,12 +702,13 @@ BTextControl_SetFlags(BTextControl *TextControl, uint32 flags)
|
|||||||
* Returns: status_t
|
* Returns: status_t
|
||||||
* Effects:
|
* Effects:
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
|
#ifndef __HAIKU__
|
||||||
status_t
|
status_t
|
||||||
BTextControl_Perform(BTextControl *TextControl, perform_code d, void *arg)
|
BTextControl_Perform(BTextControl *TextControl, perform_code d, void *arg)
|
||||||
{
|
{
|
||||||
return TextControl->Perform(d, arg);
|
return TextControl->Perform(d, arg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* Method: BTextControl::_ReservedTextControl1
|
* Method: BTextControl::_ReservedTextControl1
|
||||||
|
|||||||
Reference in New Issue
Block a user