git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott 2004-04-20 13:34:49 +00:00
parent 40bb1d31d9
commit db60d56c59
2 changed files with 8 additions and 1 deletions

View File

@ -121,7 +121,12 @@ public:
// event loop: it may return true to continue running the event loop or
// false to stop it (in the latter case it may rethrow the exception as
// well)
virtual bool OnExceptionInMainLoop() { throw; }
virtual bool OnExceptionInMainLoop() {
throw;
#ifdef __DMC__
return false;
#endif
}
// Called when an unhandled C++ exception occurs inside OnRun(): note that
// the exception type is lost by now, so if you really want to handle the

View File

@ -524,6 +524,8 @@ typedef struct {
WINCOMMCTRLAPI BOOL WINAPI _TrackMouseEvent(LPTRACKMOUSEEVENT lpEventTrack);
#define CCM_SETUNICODEFORMAT 8197
#endif
// This didn't appear in mingw until 2.95.2