]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/except/except.cpp
Rebake after bakefile changes.
[wxWidgets.git] / samples / except / except.cpp
index 256f483637fd5182dd82a202a0ad505303dde866..5e487845d55ecac6530c86c686a9ff9f26b52621 100644 (file)
@@ -238,6 +238,9 @@ IMPLEMENT_APP(MyApp)
 // 'Main program' equivalent: the program execution "starts" here
 bool MyApp::OnInit()
 {
+    if ( !wxApp::OnInit() )
+        return false;
+
     // create the main application window
     MyFrame *frame = new MyFrame();
 
@@ -472,8 +475,7 @@ MyDialog::MyDialog(wxFrame *parent)
     sizerTop->Add(new wxButton(this, wxID_CANCEL, _T("&Cancel")),
                   0, wxCENTRE | wxALL, 5);
 
-    SetSizer(sizerTop);
-    sizerTop->Fit(this);
+    SetSizerAndFit(sizerTop);
 }
 
 void MyDialog::OnThrowInt(wxCommandEvent& WXUNUSED(event))