]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/init.cpp
corrected setting the locale of the c-lib for mac
[wxWidgets.git] / src / common / init.cpp
index 21b2e37216cd3b26afd7f94ed9030db2ce331272..67112ab0501f7d909f022cea393dec1c618c66a2 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     04.10.99
 // RCS-ID:      $Id$
 // Copyright:   (c) Vadim Zeitlin
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -312,7 +312,7 @@ bool wxEntryStart(int& argc, char **argv)
 // clean up
 // ----------------------------------------------------------------------------
 
-// cleanup done before destroying wxTheApp 
+// cleanup done before destroying wxTheApp
 static void DoCommonPreCleanup()
 {
 #if wxUSE_LOG
@@ -325,13 +325,13 @@ static void DoCommonPreCleanup()
     // this will flush the old messages if any
     delete wxLog::SetActiveTarget(new wxLogStderr);
 #endif // wxUSE_LOG
-
-    wxModule::CleanUpModules();
 }
 
 // cleanup done after destroying wxTheApp
 static void DoCommonPostCleanup()
 {
+    wxModule::CleanUpModules();
+
     wxClassInfo::CleanUp();
 
     // we can't do this in wxApp itself because it doesn't know if argv had
@@ -433,6 +433,8 @@ int wxEntry(int& argc, wxChar **argv)
     {
 #ifdef __WXWINCE__
         ::ExitThread(3); // the same exit code as abort()
+#elif __WXPALMOS__
+        return -1;
 #else
         ::ExitProcess(3); // the same exit code as abort()
 #endif