]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appcmn.cpp
VTK wrapper of vtkRenderWindow for wxPython. Tested on MSW so far.
[wxWidgets.git] / src / common / appcmn.cpp
index d72316a6dd38e5c287efab8784613c63accada87..ee097b6b70edb53bbfae19f147610e13342b33b0 100644 (file)
@@ -34,6 +34,7 @@
 #endif
 
 #include "wx/thread.h"
+#include "wx/confbase.h"
 
 // ===========================================================================
 // implementation
@@ -64,3 +65,13 @@ void wxAppBase::ProcessPendingEvents()
     }
 }
 
+int wxAppBase::OnExit()
+{
+#if wxUSE_CONFIG
+    // delete the config object if any (don't use Get() here, but Set()
+    // because Get() could create a new config object)
+    delete wxConfigBase::Set((wxConfigBase *) NULL);
+#endif // wxUSE_CONFIG
+
+    return 0;
+}