]> git.saurik.com Git - wxWidgets.git/commitdiff
wxUSE_CRASHREPORT and wxUSE_STACKWALKER can't be used if wxUSE_ON_FATAL_EXCEPTION...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:10:16 +0000 (13:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 13:10:16 +0000 (13:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31448 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/setup0.h

index 963043989c149ccb52749391547b4d825a398c59..173497a55b69a598d11d6e4477cb95d20198dda8 100644 (file)
 // Set this to 1 to be able to use wxCrashReport::Generate() to create mini
 // dumps of your program when it crashes (or at any other moment)
 //
-// Default is 1.
+// Default is 1 if supported by the compiler.
 //
 // Recommended setting: 1, set to 0 if your programs never crash
 #define wxUSE_CRASHREPORT 1
 // machine-readable minidumop created by wxCrashReport::Generate()) stack back
 // trace when your program crashes using wxStackWalker
 //
-// Default is 1.
+// Default is 1 if supported by the compiler.
 //
 // Recommended setting: 1, set to 0 if your programs never crash
 #define wxUSE_STACKWALKER 1
 
+#if !wxUSE_ON_FATAL_EXCEPTION
+    #undef wxUSE_CRASHREPORT
+    #define wxUSE_CRASHREPORT 0
+    #undef wxUSE_STACKWALKER
+    #define wxUSE_STACKWALKER 0
+#endif
+
 // ----------------------------------------------------------------------------
 // obsolete settings
 // ----------------------------------------------------------------------------