]> git.saurik.com Git - wxWidgets.git/commitdiff
clean up modules after destroying the app, not before it
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Jul 2004 13:41:47 +0000 (13:41 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Jul 2004 13:41:47 +0000 (13:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/init.cpp

index 94741249d6f8742d391d5de4e1874602179be7dc..80e2c7bc5e16b0b9a283a66bfcec1127bf286db4 100644 (file)
@@ -325,13 +325,13 @@ static void DoCommonPreCleanup()
     // this will flush the old messages if any
     delete wxLog::SetActiveTarget(new wxLogStderr);
 #endif // wxUSE_LOG
     // 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()
 {
 }
 
 // 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
     wxClassInfo::CleanUp();
 
     // we can't do this in wxApp itself because it doesn't know if argv had