]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/config/conftest.cpp
fixing file paths after renaming
[wxWidgets.git] / samples / config / conftest.cpp
index 112e79056da88f41aac9dfdab5d365785f0c4781..aea01ea493ee927efdeb41e2b7ddd1fe1309d5c3 100644 (file)
@@ -85,6 +85,9 @@ IMPLEMENT_APP(MyApp)
 // `Main program' equivalent, creating windows and returning main app frame
 bool MyApp::OnInit()
 {
+  if ( !wxApp::OnInit() )
+      return false;
+
   // we're using wxConfig's "create-on-demand" feature: it will create the
   // config object when it's used for the first time. It has a number of
   // advantages compared with explicitly creating our wxConfig: