Don't initialize argv member of wxApp in unicode mode where it's no longer a primitive array.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50088 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2007-11-19 19:13:24 +00:00
parent 5a9cd2d142
commit b95d7ac96c

View File

@ -188,7 +188,9 @@ wxApp::wxApp()
#endif // __WXDEBUG__
argc = 0;
#if !wxUSE_UNICODE
argv = NULL;
#endif
m_cocoaApp = NULL;
m_cocoaAppDelegate = NULL;
}