diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-02 08:58:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-03 08:38:50 +0200 |
commit | 4450b2a16677431b1b9dfaa28d0b9af9e51ebdec (patch) | |
tree | 22aa13a8d13f690b8498ec4bdb502d198593fcab /framework | |
parent | d76281864b0e83812c0edf7490b1e8271e89fff5 (diff) |
pass area param to DBG_UNHANDLED_EXCEPTION
and update sallogareas plugin to enforce this
Change-Id: Id0782c8a1f619372e10d931aec3c6a4743a4c86a
Reviewed-on: https://gerrit.libreoffice.org/52249
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwe/classes/framelistanalyzer.cxx | 2 | ||||
-rw-r--r-- | framework/source/fwe/helper/documentundoguard.cxx | 4 | ||||
-rw-r--r-- | framework/source/fwe/helper/undomanagerhelper.cxx | 4 | ||||
-rw-r--r-- | framework/source/helper/titlebarupdate.cxx | 2 | ||||
-rw-r--r-- | framework/source/services/frame.cxx | 2 | ||||
-rw-r--r-- | framework/source/uifactory/windowcontentfactorymanager.cxx | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/framework/source/fwe/classes/framelistanalyzer.cxx b/framework/source/fwe/classes/framelistanalyzer.cxx index 6b27020af4e8..26c22acc286b 100644 --- a/framework/source/fwe/classes/framelistanalyzer.cxx +++ b/framework/source/fwe/classes/framelistanalyzer.cxx @@ -124,7 +124,7 @@ void FrameListAnalyzer::impl_analyze() } catch(const css::uno::Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } diff --git a/framework/source/fwe/helper/documentundoguard.cxx b/framework/source/fwe/helper/documentundoguard.cxx index 956c7111f4fb..3fed0051c8fb 100644 --- a/framework/source/fwe/helper/documentundoguard.cxx +++ b/framework/source/fwe/helper/documentundoguard.cxx @@ -182,7 +182,7 @@ namespace framework } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } @@ -196,7 +196,7 @@ namespace framework } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } } diff --git a/framework/source/fwe/helper/undomanagerhelper.cxx b/framework/source/fwe/helper/undomanagerhelper.cxx index 6ed845d579df..65f350b88a30 100644 --- a/framework/source/fwe/helper/undomanagerhelper.cxx +++ b/framework/source/fwe/helper/undomanagerhelper.cxx @@ -99,7 +99,7 @@ namespace framework } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } @@ -112,7 +112,7 @@ namespace framework } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } return sComment; } diff --git a/framework/source/helper/titlebarupdate.cxx b/framework/source/helper/titlebarupdate.cxx index 94a27ba47c2b..c75e8a32d974 100644 --- a/framework/source/helper/titlebarupdate.cxx +++ b/framework/source/helper/titlebarupdate.cxx @@ -252,7 +252,7 @@ void TitleBarUpdate::impl_updateIcon(const css::uno::Reference< css::frame::XFra } catch(const css::uno::Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 23a03f1af8cc..959b78737cbf 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -3017,7 +3017,7 @@ void Frame::implts_setIconOnWindow() } catch( css::uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } diff --git a/framework/source/uifactory/windowcontentfactorymanager.cxx b/framework/source/uifactory/windowcontentfactorymanager.cxx index f8911939dc6b..4dc65aa5a66c 100644 --- a/framework/source/uifactory/windowcontentfactorymanager.cxx +++ b/framework/source/uifactory/windowcontentfactorymanager.cxx @@ -176,7 +176,7 @@ uno::Reference< uno::XInterface > SAL_CALL WindowContentFactoryManager::createIn } catch ( uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("fwk"); } } } |