]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
wxStrcoll_String compilation fixes for Dmars and Borland compilers
[wxWidgets.git] / include / wx / app.h
index b82a6efc2d00e7d8b3be1856ea4b53319a11fba7..d12af8b3ae11f08a3c49b008dcd4e1769bb27fb8 100644 (file)
@@ -197,10 +197,10 @@ public:
                              wxEvent& event) const;
 
     // 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
-    // exception you should override OnRun() and put a try/catch around
-    // MainLoop() call there or use OnExceptionInMainLoop()
-    virtual void OnUnhandledException() { }
+    // the main event loop has already terminated by now and the program will
+    // exit, if you need to really handle the exceptions you need to override
+    // OnExceptionInMainLoop()
+    virtual void OnUnhandledException();
 #endif // wxUSE_EXCEPTIONS
 
     // event processing functions
@@ -345,7 +345,8 @@ protected:
 #if defined(__UNIX__)
     #include "wx/unix/app.h"
 #else
-    typedef wxAppConsoleBase wxAppConsole;
+    // this has to be a class and not a typedef as we forward declare it
+    class wxAppConsole : public wxAppConsoleBase { };
 #endif
 
 // ----------------------------------------------------------------------------