git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23650
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/ptr_scpd.h"
#include "wx/module.h"
#include "wx/ptr_scpd.h"
#include "wx/module.h"
#if defined(__WXMSW__) && defined(__WXDEBUG__)
#include "wx/msw/msvcrt.h"
#if defined(__WXMSW__) && defined(__WXDEBUG__)
#include "wx/msw/msvcrt.h"
WX_SUPPRESS_UNUSED_WARN(cleanupOnExit);
WX_SUPPRESS_UNUSED_WARN(cleanupOnExit);
- // app initialization
- if ( !wxTheApp->CallOnInit() )
- // don't call OnExit() if OnInit() failed
- return -1;
- }
+ // app initialization
+ if ( !wxTheApp->CallOnInit() )
+ {
+ // don't call OnExit() if OnInit() failed
+ return -1;
+ }
- // app execution
- int retValue = wxTheApp->OnRun();
+ // app execution
+ int retValue = wxTheApp->OnRun();
- // app clean up
- wxTheApp->OnExit();
+ // app clean up
+ wxTheApp->OnExit();
+ return retValue;
+ }
+ wxCATCH_ALL( wxTheApp->OnUnhandledException(); return -1; )
}
// wrap real wxEntry in a try-except block to be able to call
}
// wrap real wxEntry in a try-except block to be able to call