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 /svx/source/form/fmpgeimp.cxx | |
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 'svx/source/form/fmpgeimp.cxx')
-rw-r--r-- | svx/source/form/fmpgeimp.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/form/fmpgeimp.cxx b/svx/source/form/fmpgeimp.cxx index 6409103bdcf5..3d974c0eb02e 100644 --- a/svx/source/form/fmpgeimp.cxx +++ b/svx/source/form/fmpgeimp.cxx @@ -215,7 +215,7 @@ void FmFormPageImpl::initFrom( FmFormPageImpl& i_foreignImpl ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -292,7 +292,7 @@ Reference< XMap > FmFormPageImpl::impl_createControlShapeMap_nothrow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return xMap; } @@ -384,7 +384,7 @@ Reference< XForm > FmFormPageImpl::getDefaultForm() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -430,7 +430,7 @@ Reference< XForm > FmFormPageImpl::getDefaultForm() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); xForm.clear(); } @@ -625,7 +625,7 @@ OUString FmFormPageImpl::setUniqueName(const Reference< XFormComponent > & xForm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } #endif OUString sName; @@ -671,7 +671,7 @@ void FmFormPageImpl::formModelAssigned( const FmFormObj& _object ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -689,7 +689,7 @@ void FmFormPageImpl::formObjectInserted( const FmFormObj& _object ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -707,7 +707,7 @@ void FmFormPageImpl::formObjectRemoved( const FmFormObj& _object ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } |