Fix compile issue on OSX.
(OSX is always double-buffered so wxWidgets left that method out of the OSX impl. Might have been nicer if they had just no-op'ed it.)
This commit is contained in:
parent
9b92b275de
commit
7cbaeae265
|
@ -53,6 +53,10 @@ public:
|
||||||
// Don't use the passed in accelerator table, create a new empty one
|
// Don't use the passed in accelerator table, create a new empty one
|
||||||
wxMenuBar::SetAcceleratorTable( wxAcceleratorTable() );
|
wxMenuBar::SetAcceleratorTable( wxAcceleratorTable() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __WXMAC__
|
||||||
|
void SetDoubleBuffered( bool ) { }
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // COMMON_WIDGETS_WX_BUSY_INDICATOR__H
|
#endif // WX_MENUBAR_H_
|
||||||
|
|
Loading…
Reference in New Issue