]> git.saurik.com Git - wxWidgets.git/commitdiff
only define globals when wxUSE_BASE to avoid duplicate definitions in wxBase and...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:11:24 +0000 (13:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:11:24 +0000 (13:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31449 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/main.cpp

index 89c330a35dcc45494faffb596d1003fee382506e..900ef4fdefad0b35f4c391b1f81e4638b770c3ad 100644 (file)
@@ -69,7 +69,7 @@
 
 // wrap real wxEntry in a try-except block to be able to call
 // OnFatalException() if necessary
-#if wxUSE_ON_FATAL_EXCEPTION
+#if wxUSE_ON_FATAL_EXCEPTION && wxUSE_BASE
 
 // global pointer to exception information, only valid inside OnFatalException,
 // used by wxStackWalker and wxCrashReport
@@ -191,7 +191,7 @@ int wxEntry(int& argc, wxChar **argv)
     }
 }
 
-#endif // wxUSE_ON_FATAL_EXCEPTION
+#endif // wxUSE_ON_FATAL_EXCEPTION && wxUSE_BASE
 
 #if wxUSE_GUI