Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25054/src/gui
Modified Files:
wxMApp.cpp
Log Message:
don't intercept crashes in debug builds, this interferes with debugging
Index: wxMApp.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMApp.cpp,v
retrieving revision 1.306
retrieving revision 1.307
diff -b -u -2 -r1.306 -r1.307
--- wxMApp.cpp 19 Aug 2006 13:12:00 -0000 1.306
+++ wxMApp.cpp 20 Aug 2006 20:21:49 -0000 1.307
@@ -914,6 +914,7 @@
wxMApp::OnInit()
{
- // we want our OnAbnormalTermination() be called if we crash
-#if wxUSE_ON_FATAL_EXCEPTION
+ // we want our OnAbnormalTermination() be called if we crash but don't use
+ // it in debug builds as it interferes with the debugger
+#if wxUSE_ON_FATAL_EXCEPTION && !defined(__WXDEBUG__)
wxHandleFatalExceptions();
#endif
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates