]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/help/demo.cpp
correct access for virtuals
[wxWidgets.git] / samples / help / demo.cpp
index 34fd0eb0f802f6cc099d8afe861957de41b17c41..7749c96fc8b9831d82d4a0e5478825b607b8720c 100644 (file)
@@ -223,7 +223,7 @@ enum
     HelpDemo_Help_GNOME,
     HelpDemo_Help_Netscape,
     // controls start here (the numbers are, of course, arbitrary)
-    HelpDemo_Text = 1000,
+    HelpDemo_Text = 1000
 };
 
 // ----------------------------------------------------------------------------
@@ -287,6 +287,9 @@ IMPLEMENT_APP(MyApp)
 // `Main program' equivalent: the program execution "starts" here
 bool MyApp::OnInit()
 {
+    if ( !wxApp::OnInit() )
+        return false;
+
     // Create a simple help provider to make SetHelpText() do something.
     // Note that this must be set before any SetHelpText() calls are made.
 #if USE_SIMPLE_HELP_PROVIDER