]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/windows/errordialog.cpp
Return true to indicate the error was handled
[libs/gui.git] / 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