summaryrefslogtreecommitdiff
path: root/vcl/source/app/salusereventlist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/salusereventlist.cxx')
-rw-r--r--vcl/source/app/salusereventlist.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/app/salusereventlist.cxx b/vcl/source/app/salusereventlist.cxx
index ed66602ca549..b71b5ed2031a 100644
--- a/vcl/source/app/salusereventlist.cxx
+++ b/vcl/source/app/salusereventlist.cxx
@@ -27,6 +27,8 @@
#include <com/sun/star/uno/Exception.hpp>
#include <cppuhelper/exc_hlp.hxx>
+#include <tools/debug.hxx>
+#include <tools/diagnose_ex.h>
#include <sal/log.hxx>
#include <sal/types.h>
#include <svdata.hxx>
@@ -108,10 +110,10 @@ bool SalUserEventList::DispatchUserEvents( bool bHandleAllCurrentEvents )
{
ProcessEvent( aEvent );
}
- catch (css::uno::Exception& e)
+ catch (css::uno::Exception&)
{
auto const e2 = cppu::getCaughtException();
- SAL_WARN("vcl", "Uncaught " << e2.getValueTypeName() << " " << e.Message);
+ SAL_WARN("vcl", "Uncaught " << exceptionToString(e2));
std::abort();
}
catch (std::exception& e)