diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-01 14:42:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-07 07:12:39 +0100 |
commit | 8b5e23eac31cafbd442a3acab5fbcf98bfd0af11 (patch) | |
tree | d41feeea533127280e0503d0dc2dd55a4ab83ce8 /toolkit/source/helper | |
parent | 4f810905fa74128871f2fe924a3d28a79f4e4261 (diff) |
log nice exception messages whereever possible
Change-Id: Idd125c18bee1a39b9ea8cc4f8c55cddfd37c33e1
Reviewed-on: https://gerrit.libreoffice.org/68579
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit/source/helper')
-rw-r--r-- | toolkit/source/helper/listenermultiplexer.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
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 <toolkit/helper/listenermultiplexer.hxx> #include <com/sun/star/lang/DisposedException.hpp> #include <cppuhelper/queryinterface.hxx> +#include <tools/diagnose_ex.h> // 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 ) } } } |