memory leak fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2002-01-05 16:39:22 +00:00
parent 9c152f8094
commit 12cd5f34e7
4 changed files with 24 additions and 12 deletions

View File

@@ -56,9 +56,6 @@
#if wxUSE_SOCKETS
#ifdef __DARWIN__
#include <CoreServices/CoreServices.h>
#else
#include <OpenTransport.h>
#include <OpenTptInternet.h>
#endif
#endif
@@ -526,6 +523,7 @@ bool wxApp::Initialize()
void wxApp::CleanUp()
{
wxToolTip::RemoveToolTips() ;
#if wxUSE_LOG
// flush the logged messages if any and install a 'safer' log target: the
// default one (wxLogGui) can't be used after the resources are freed just
@@ -563,6 +561,9 @@ void wxApp::CleanUp()
if (wxWinMacWindowList)
delete wxWinMacWindowList ;
if (wxWinMacControlList)
delete wxWinMacControlList ;
delete wxPendingEvents;
#if wxUSE_THREADS
delete wxPendingEventsLocker;