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:
Jeff Young 2020-07-11 21:33:56 +01:00
parent 9b92b275de
commit 7cbaeae265
1 changed files with 5 additions and 1 deletions

View File

@ -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_