Plan B - use a #error when !wxUSE_ON_FATAL_EXCEPTION

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33686 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-04-16 22:10:55 +00:00
parent 21dfc16274
commit 8fb6f6408d

View File

@@ -27,6 +27,10 @@
#error "This sample can't be built without wxUSE_DEBUGREPORT" #error "This sample can't be built without wxUSE_DEBUGREPORT"
#endif // wxUSE_DEBUGREPORT #endif // wxUSE_DEBUGREPORT
#if !wxUSE_ON_FATAL_EXCEPTION
#error "This sample can't be built without wxUSE_ON_FATAL_EXCEPTION"
#endif // wxUSE_ON_FATAL_EXCEPTION
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// custom debug reporting class // custom debug reporting class
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -137,9 +141,7 @@ class MyApp : public wxApp
public: public:
virtual bool OnInit() virtual bool OnInit()
{ {
#if wxUSE_ON_FATAL_EXCEPTION
wxHandleFatalExceptions(); wxHandleFatalExceptions();
#endif
if ( !wxApp::OnInit() ) if ( !wxApp::OnInit() )
return false; return false;