]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appbase.cpp
Putting the SetBestFittingSize() call at the end of wxToolBar::Realize
[wxWidgets.git] / src / common / appbase.cpp
index 663e7ea67063d7c5064f7bc9ffe2fa7003b7f974..fd408ab0d95aee5ac8c709687e25a03a0d68aa69 100644 (file)
@@ -320,17 +320,6 @@ wxAppConsole::HandleEvent(wxEvtHandler *handler,
     (handler->*func)(event);
 }
 
-bool
-wxAppConsole::OnExceptionInMainLoop()
-{
-    throw;
-
-    // some compilers are too stupid to know that we never return after throw
-#if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200)
-    return false;
-#endif
-}
-
 #endif // wxUSE_EXCEPTIONS
 
 // ----------------------------------------------------------------------------