X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af8964c4c3770b2d54ee54a9f8275113e944a3d9..2b004197c8cea40b41632e86cf27857463f985b8:/include/wx/gtk/frame.h diff --git a/include/wx/gtk/frame.h b/include/wx/gtk/frame.h index fd7e72f4d3..8d37644740 100644 --- a/include/wx/gtk/frame.h +++ b/include/wx/gtk/frame.h @@ -70,10 +70,6 @@ public: virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); virtual bool IsFullScreen() const { return m_fsIsShowing; }; -#if wxUSE_MENUS - virtual void SetMenuBar( wxMenuBar *menuBar ); -#endif // wxUSE_MENUS - #if wxUSE_STATUSBAR virtual void PositionStatusBar(); @@ -134,8 +130,13 @@ protected: virtual void DoSetClientSize(int width, int height); virtual void DoGetClientSize( int *width, int *height ) const; +#if wxUSE_MENUS_NATIVE + virtual void DetachMenuBar(); + virtual void AttachMenuBar(wxMenuBar *menubar); +#endif // wxUSE_MENUS_NATIVE + // is the frame currently iconized? - bool m_isIconized; + bool m_isIconized; }; #endif // __GTKFRAMEH__