]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/minifram/minifram.cpp
use wxFD_XXX instead of deprecated wxXXX in the documentation
[wxWidgets.git] / samples / minifram / minifram.cpp
index e63bf430e0e3166ae0fc85b1897598e41df2c0fc..4b01ac159f714dab060e353f4fad139a17937078 100644 (file)
@@ -57,13 +57,13 @@ wxButton      *button     = (wxButton*) NULL;
 // main frame
 bool MyApp::OnInit()
 {
+  if ( !wxApp::OnInit() )
+    return false;
+
   // Create the main frame window
   main_frame = new MyMainFrame((wxFrame *) NULL, wxID_ANY, _T("wxFrame sample"),
      wxPoint(100, 100), wxSize(300, 200));
 
-  // main_frame->SetMinSize( wxSize(100,100) );
-  // main_frame->SetMaxSize( wxSize(400,400) );
-  // same as
   main_frame->SetSizeHints( 100,100, 400,400 );
 
   wxMenu *file_menu = new wxMenu;
@@ -238,10 +238,10 @@ void MyMainFrame::OnSetSize_200_200(wxCommandEvent& WXUNUSED(event))
 
 void MyMainFrame::OnSetMaxSize_150_150(wxCommandEvent& WXUNUSED(event))
 {
-    SetMaxSize( wxSize(150,150) );
+    SetSizeHints( -1, -1, 150, 150 );
 }
 
 void MyMainFrame::OnSetMaxSize_300_300(wxCommandEvent& WXUNUSED(event))
 {
-    SetMaxSize( wxSize(300,300) );
+    SetSizeHints( -1, -1, 300, 300 );
 }