]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mdi/mdi.cpp
compilation fix after wxCmdLineEntryDesc changes
[wxWidgets.git] / samples / mdi / mdi.cpp
index 18e040016398e2446180fd831470430d8baa030e..49336c75f546fcd489095aeee6f6ee0f9d984c95 100644 (file)
@@ -267,11 +267,6 @@ void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) )
     subframe->SetMenuBar(menu_bar);
 #endif // wxUSE_MENUS
 
-#if wxUSE_STATUSBAR
-    subframe->CreateStatusBar();
-    subframe->SetStatusText(title);
-#endif // wxUSE_STATUSBAR
-
     int width, height;
     subframe->GetClientSize(&width, &height);
     MyCanvas *canvas = new MyCanvas(subframe, wxPoint(0, 0), wxSize(width, height));