diff options
Diffstat (limited to 'chart2/source/controller/main/CommandDispatch.cxx')
-rw-r--r-- | chart2/source/controller/main/CommandDispatch.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chart2/source/controller/main/CommandDispatch.cxx b/chart2/source/controller/main/CommandDispatch.cxx index 3dca6c7cab22..34e3d3e1ba1c 100644 --- a/chart2/source/controller/main/CommandDispatch.cxx +++ b/chart2/source/controller/main/CommandDispatch.cxx @@ -20,6 +20,7 @@ #include "CommandDispatch.hxx" #include <CommonFunctors.hxx> #include <com/sun/star/util/URLTransformer.hpp> +#include <tools/diagnose_ex.h> #include <algorithm> #include <functional> @@ -158,9 +159,9 @@ void CommandDispatch::fireStatusEventForURL( if( xListener.is()) xListener->statusChanged( aEventToSend ); } - catch( const uno::Exception & ex ) + catch( const uno::Exception & ) { - SAL_WARN("chart2", "Exception caught. " << ex ); + DBG_UNHANDLED_EXCEPTION("chart2"); } } } |