X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fwindows%2Ferrordialog.cpp;h=7ff4d2552c21cd86734602df8aae044c403594dc;hb=a0d4adec0fe25cb76c99b5ad3d98248215688c85;hp=52150399f6dd8429db15f830ce16d0331a8294ad;hpb=12df88ecf9787f4ed59051646775165b74301cf0;p=libs%2Fgui.git diff --git a/source/graphics/windows/errordialog.cpp b/source/graphics/windows/errordialog.cpp index 5215039..7ff4d25 100644 --- a/source/graphics/windows/errordialog.cpp +++ b/source/graphics/windows/errordialog.cpp @@ -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