]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/myframe.cpp
Fixes for wxUSE_STATUSBAR.
[wxWidgets.git] / samples / xrc / myframe.cpp
index cfab7d39f97c3a5f2950f5044da7f10d411ec8b0..577997cc1e2ab0e65af244cd4c07e878f8e1e0e1 100644 (file)
@@ -122,12 +122,14 @@ MyFrame::MyFrame(wxWindow* parent)
     // needs to be all in one step.
     SetToolBar(wxXmlResource::Get()->LoadToolBar(this, wxT("main_toolbar")));
 
+#if wxUSE_STATUSBAR
     // Give the frame a optional statusbar. The '1' just means one field.
     // A gripsizer will automatically get put on into the corner, if that
     // is the normal OS behaviour for frames on that platform. Helptext
     // for menu items and toolbar tools will automatically get displayed
     // here.
     CreateStatusBar( 1 );
+#endif // wxUSE_STATUSBAR
 }
 
 //-----------------------------------------------------------------------------