From 00344dd0f0289fd54841097ce95d9124ae024179 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 16 Aug 2002 23:03:01 +0000 Subject: [PATCH] compilation fix for wxApp after exitOnFrameDelete changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/app.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/x11/app.cpp b/src/x11/app.cpp index c7b517a62d..fdfe4c3a42 100644 --- a/src/x11/app.cpp +++ b/src/x11/app.cpp @@ -388,13 +388,10 @@ wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction) NUL wxApp::wxApp() { - m_topWindow = NULL; - wxTheApp = this; - m_className = ""; - m_wantDebugOutput = TRUE ; - m_appName = ""; + // TODO: parse the command line argc = 0; argv = NULL; + m_mainColormap = (WXColormap) NULL; m_topLevelWidget = (WXWindow) NULL; m_maxRequestSize = 0; -- 2.50.0