Readded #if wxUSE_UNICODE to ~wxApp.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis 2000-03-16 19:27:40 +00:00
parent 3f755e2d96
commit 039bec17f4

View File

@ -529,6 +529,7 @@ wxApp::~wxApp()
//
// Delete command-line args
//
#if wxUSE_UNICODE
int i;
for (i = 0; i < argc; i++)
@ -536,6 +537,7 @@ wxApp::~wxApp()
delete[] argv[i];
}
delete[] argv;
#endif
} // end of wxApp::~wxApp
bool wxApp::Initialized()