From f41a55474cb6217560af81ae99c3e2fe1aca5215 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 16 Jun 2019 15:37:37 +0200 Subject: loplugin:logexceptionnicely in scripting..sdext Change-Id: Ib08f41bb0bed494e7ed00f5bae92eae2b8e80d93 Reviewed-on: https://gerrit.libreoffice.org/74113 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/filter/xml/sdxmlwrp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd/source/filter') diff --git a/sd/source/filter/xml/sdxmlwrp.cxx b/sd/source/filter/xml/sdxmlwrp.cxx index 3c9cf80ab33b..e6e5adb26c4d 100644 --- a/sd/source/filter/xml/sdxmlwrp.cxx +++ b/sd/source/filter/xml/sdxmlwrp.cxx @@ -1005,9 +1005,9 @@ bool SdXMLFilter::Export() mxStatusIndicator->end(); } } - catch (const uno::Exception &e) + catch (const uno::Exception &) { - SAL_WARN( "sd.filter", "uno Exception caught while exporting:" << e); + TOOLS_WARN_EXCEPTION( "sd.filter", "uno Exception caught while exporting"); bDocRet = false; } if ( !bLocked ) -- cgit