From: Vadim Zeitlin Date: Sat, 7 Jan 2006 01:12:49 +0000 (+0000) Subject: just added wxUSE_MENUS around code using the menus X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/290c74fbed7126cb5aa7cf00b466ed875b01e8e2 just added wxUSE_MENUS around code using the menus git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/mdi/mdi.cpp b/samples/mdi/mdi.cpp index 6c521e7a9d..ab8347223d 100644 --- a/samples/mdi/mdi.cpp +++ b/samples/mdi/mdi.cpp @@ -234,6 +234,7 @@ void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) ) subframe->SetIcon(wxIcon( mondrian_xpm )); #endif +#if wxUSE_MENUS // Make a menubar wxMenu *file_menu = new wxMenu; @@ -260,6 +261,7 @@ void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) ) // Associate the menu bar with the frame subframe->SetMenuBar(menu_bar); +#endif // wxUSE_MENUS #if wxUSE_STATUSBAR subframe->CreateStatusBar();