]> git.tdb.fi Git - libs/gui.git/commitdiff
Return true to indicate the error was handled
authorMikko Rasa <tdb@tdb.fi>
Thu, 17 Oct 2013 07:13:38 +0000 (10:13 +0300)
committerMikko Rasa <tdb@tdb.fi>
Thu, 17 Oct 2013 07:13:38 +0000 (10:13 +0300)
source/graphics/windows/errordialog.cpp

index 52150399f6dd8429db15f830ce16d0331a8294ad..7ff4d2552c21cd86734602df8aae044c403594dc 100644 (file)
@@ -12,7 +12,7 @@ bool ErrorDialog::report_uncaught_exception(const exception &e) const
 {
        string msg = Debug::demangle(typeid(e).name())+":\n"+e.what();
        MessageBoxA(0, msg.c_str(), "Uncaught exception", MB_OK|MB_ICONERROR);
-       return false;
+       return true;
 }
 
 } // namespace Graphics