From 8b5e23eac31cafbd442a3acab5fbcf98bfd0af11 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 1 Mar 2019 14:42:38 +0200 Subject: log nice exception messages whereever possible Change-Id: Idd125c18bee1a39b9ea8cc4f8c55cddfd37c33e1 Reviewed-on: https://gerrit.libreoffice.org/68579 Tested-by: Jenkins Reviewed-by: Noel Grandin --- toolkit/source/helper/listenermultiplexer.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'toolkit/source/helper') diff --git a/toolkit/source/helper/listenermultiplexer.cxx b/toolkit/source/helper/listenermultiplexer.cxx index 7083ee0ca03d..a1c4d8a53c0f 100644 --- a/toolkit/source/helper/listenermultiplexer.cxx +++ b/toolkit/source/helper/listenermultiplexer.cxx @@ -20,6 +20,7 @@ #include #include #include +#include // class ListenerMultiplexerBase @@ -179,9 +180,9 @@ void TabListenerMultiplexer::changed( sal_Int32 evt, const css::uno::Sequence< c if ( e.Context == xListener || !e.Context.is() ) aIt.remove(); } - catch(const css::uno::RuntimeException& e) + catch(const css::uno::RuntimeException&) { - DISPLAY_EXCEPTION( TabListenerMultiplexer, changed, e ) + DISPLAY_EXCEPTION( TabListenerMultiplexer, changed ) } } } -- cgit