]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/except/except.cpp
test Clear() in the sample
[wxWidgets.git] / samples / except / except.cpp
index a63e63dea85d5739ed642cd59b58b9dd577c8dcf..f401d6ce186e7675ac98ddbb51cc5e555601aea6 100644 (file)
@@ -79,7 +79,7 @@ public:
     // program startup
     virtual bool OnInit();
 
-    // 2nd-level exception handling: we get all the exceptions occuring in any
+    // 2nd-level exception handling: we get all the exceptions occurring in any
     // event handler here
     virtual bool OnExceptionInMainLoop();
 
@@ -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();