]> git.saurik.com Git - wxWidgets.git/commitdiff
wxDeleteStockLists() used (instead of duplicating part of it's code)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Aug 1998 21:40:45 +0000 (21:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Aug 1998 21:40:45 +0000 (21:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/app.cpp

index 5001e5443029544926abd4104af4250208470ff5..f89afb5f733f52b98cdf7a45e5b1e39bbb24700e 100644 (file)
@@ -386,6 +386,7 @@ void wxApp::CommonCleanUp()
 
 //  wxDefaultResourceTable->ClearTable();
 #endif
+
   // Indicate that the cursor can be freed,
   // so that cursor won't be deleted by deleting
   // the bitmap list before g_globalCursor goes out
@@ -396,17 +397,7 @@ void wxApp::CommonCleanUp()
   wxDeleteStockObjects() ;
 
   // Destroy all GDI lists, etc.
-  delete wxTheBrushList;
-  wxTheBrushList = NULL;
-
-  delete wxThePenList;
-  wxThePenList = NULL;
-
-  delete wxTheFontList;
-  wxTheFontList = NULL;
-
-  delete wxTheBitmapList;
-  wxTheBitmapList = NULL;
+  wxDeleteStockLists();
 
   delete wxTheColourDatabase;
   wxTheColourDatabase = NULL;