diff options
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/options/optpath.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx index e053b3514d1c..cfd41c1b40c4 100644 --- a/cui/source/options/optpath.cxx +++ b/cui/source/options/optpath.cxx @@ -50,6 +50,7 @@ #include <officecfg/Office/Common.hxx> #include "optHeaderTabListbox.hxx" #include <vcl/help.hxx> +#include <tools/diagnose_ex.h> using namespace css; using namespace css::beans; @@ -648,9 +649,9 @@ IMPL_LINK_NOARG(SvxPathTabPage, PathHdl_Impl, Button*, void) ChangeCurrentEntry(aPathSeq[0]); } } - catch (const uno::Exception& rException) + catch (const uno::Exception&) { - SAL_WARN("cui.options", "SvxPathTabPage::PathHdl_Impl: exception from file picker: " << rException); + DBG_UNHANDLED_EXCEPTION("cui.options", "exception from file picker"); } } } |