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 /forms/source | |
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 'forms/source')
-rw-r--r-- | forms/source/component/Button.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ComboBox.cxx | 4 | ||||
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 18 | ||||
-rw-r--r-- | forms/source/component/Edit.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/Filter.cxx | 8 | ||||
-rw-r--r-- | forms/source/component/FormComponent.cxx | 42 | ||||
-rw-r--r-- | forms/source/component/ImageControl.cxx | 6 | ||||
-rw-r--r-- | forms/source/component/ListBox.cxx | 12 | ||||
-rw-r--r-- | forms/source/component/cachedrowset.cxx | 4 | ||||
-rw-r--r-- | forms/source/component/propertybaghelper.cxx | 2 | ||||
-rw-r--r-- | forms/source/helper/commandimageprovider.cxx | 6 | ||||
-rw-r--r-- | forms/source/helper/windowstateguard.cxx | 2 | ||||
-rw-r--r-- | forms/source/misc/InterfaceContainer.cxx | 8 | ||||
-rw-r--r-- | forms/source/richtext/richtextcontrol.cxx | 4 | ||||
-rw-r--r-- | forms/source/runtime/formoperations.cxx | 10 | ||||
-rw-r--r-- | forms/source/solar/component/navbarcontrol.cxx | 2 | ||||
-rw-r--r-- | forms/source/xforms/binding.cxx | 2 | ||||
-rw-r--r-- | forms/source/xforms/submission/serialization_app_xml.cxx | 2 |
18 files changed, 68 insertions, 68 deletions
diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx index 35ca84b801ec..d0f77ca64d13 100644 --- a/forms/source/component/Button.cxx +++ b/forms/source/component/Button.cxx @@ -320,7 +320,7 @@ void OButtonModel::impl_resetNoBroadcast_nothrow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index 8e7bee2bf1c7..ca4d1d065aea 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -593,7 +593,7 @@ void OComboBoxModel::loadData( bool _bForce ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); return; } @@ -661,7 +661,7 @@ void OComboBoxModel::loadData( bool _bForce ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); return; } diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index d0031c710643..0cfb1c72fd97 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -121,7 +121,7 @@ private: } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -1977,7 +1977,7 @@ void ODatabaseForm::reset_impl(bool _bAproveByListeners) } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } } @@ -2338,7 +2338,7 @@ void SAL_CALL ODatabaseForm::setParent(const css::uno::Reference<css::uno::XInte } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2360,7 +2360,7 @@ void SAL_CALL ODatabaseForm::setParent(const css::uno::Reference<css::uno::XInte } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2788,7 +2788,7 @@ bool ODatabaseForm::implEnsureConnection() } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return false; @@ -3043,11 +3043,11 @@ bool ODatabaseForm::impl_approveRowChange_throw( const EventObject& _rEvent, con { if ( _bAllowSQLException ) throw; - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } return true; @@ -3085,7 +3085,7 @@ sal_Bool SAL_CALL ODatabaseForm::approveCursorMove(const EventObject& event) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } return true; @@ -3134,7 +3134,7 @@ sal_Bool SAL_CALL ODatabaseForm::approveRowChange(const RowChangeEvent& event) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } return true; diff --git a/forms/source/component/Edit.cxx b/forms/source/component/Edit.cxx index 1bf099d7ac08..e14b0526b4bb 100644 --- a/forms/source/component/Edit.cxx +++ b/forms/source/component/Edit.cxx @@ -450,7 +450,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } } diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index ab97e4d365ad..f877753dc789 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -237,7 +237,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } if (m_bFilterList) @@ -339,7 +339,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } break; @@ -471,7 +471,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } #endif } @@ -740,7 +740,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index 0f63b890b208..11cfed98d15a 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -261,7 +261,7 @@ void OControl::impl_resetStateGuard_nothrow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } m_aWindowStateGuard.attach( xWindow, xModel ); } @@ -460,7 +460,7 @@ void OControlModel::readHelpTextCompatibly(const css::uno::Reference< css::io::X catch(const Exception&) { SAL_WARN("forms.component", "OControlModel::readHelpTextCompatibly: could not forward the property value to the aggregate!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -475,7 +475,7 @@ void OControlModel::writeHelpTextCompatibly(const css::uno::Reference< css::io:: catch(const Exception&) { SAL_WARN("forms.component", "OControlModel::writeHelpTextCompatibly: could not retrieve the property value from the aggregate!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } ::comphelper::operator<<( _rxOutStream, sHelpText); } @@ -516,7 +516,7 @@ OControlModel::OControlModel( catch( const Exception& ) { SAL_WARN("forms.component", "OControlModel::OControlModel: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } } @@ -804,7 +804,7 @@ void OControlModel::read(const Reference<css::io::XObjectInputStream>& InStream) catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } xMark->jumpToMark(nMark); @@ -1233,7 +1233,7 @@ void OBoundControlModel::clonedFrom( const OControlModel* _pOriginal ) catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -1806,7 +1806,7 @@ void SAL_CALL OBoundControlModel::propertyChange( const PropertyChangeEvent& evt catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::propertyChange: could not adjust my binding-controlled property!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -1966,7 +1966,7 @@ void OBoundControlModel::connectToField(const Reference<XRowSet>& rForm) catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); resetField(); } @@ -2147,7 +2147,7 @@ void OBoundControlModel::doSetControlValue( const Any& _rValue ) catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::doSetControlValue: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2168,7 +2168,7 @@ void OBoundControlModel::onConnectedValidator( ) catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::onConnectedValidator: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } recheckValidity( false ); @@ -2188,7 +2188,7 @@ void OBoundControlModel::onDisconnectedValidator( ) catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::onDisconnectedValidator: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } recheckValidity( false ); @@ -2247,7 +2247,7 @@ void OBoundControlModel::reset() catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2266,7 +2266,7 @@ void OBoundControlModel::reset() catch( const SQLException& ) { SAL_WARN("forms.component", "OBoundControlModel::reset: caught an SQL exception!" ); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } // #i24495# - don't count the insert row as "invalid" @@ -2311,7 +2311,7 @@ void OBoundControlModel::reset() catch(const Exception&) { SAL_WARN("forms.component", "OBoundControlModel::reset: this should have succeeded in all cases!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } bool bNeedValueTransfer = true; @@ -2419,7 +2419,7 @@ void OBoundControlModel::connectExternalValueBinding( catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } // propagate our new value @@ -2437,7 +2437,7 @@ void OBoundControlModel::connectExternalValueBinding( catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2462,7 +2462,7 @@ void OBoundControlModel::disconnectExternalValueBinding( ) catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::disconnectExternalValueBinding: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } // if the binding also acts as our validator, disconnect the validator, too @@ -2532,7 +2532,7 @@ void OBoundControlModel::transferDbValueToControl( ) catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -2550,7 +2550,7 @@ void OBoundControlModel::transferExternalValueToControl( ControlModelLock& _rIns catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } // < UNSAFE _rInstanceLock.acquire(); @@ -2574,7 +2574,7 @@ void OBoundControlModel::transferControlValueToExternal( ControlModelLock& _rIns catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } // < UNSAFE @@ -2791,7 +2791,7 @@ void OBoundControlModel::recheckValidity( bool _bForceNotification ) catch( const Exception& ) { SAL_WARN("forms.component", "OBoundControlModel::recheckValidity: caught an exception!"); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index 59267b953dd7..1f0c99bdf5e7 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -520,7 +520,7 @@ void OImageControlModel::onConnectedDbColumn( const Reference< XInterface >& _rx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } @@ -654,7 +654,7 @@ IMPL_LINK( OImageControlModel, OnImageImportDone, ::Graphic*, i_pGraphic, void ) } catch ( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } m_bExternalGraphic = true; } @@ -844,7 +844,7 @@ bool OImageControlControl::impl_isEmptyGraphics_nothrow() const } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return bIsEmpty; diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 8b26bc2dd24b..ef0a4e574814 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -926,7 +926,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } else if ( *aBoundColumn == -1) @@ -1000,7 +1000,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); return; } @@ -1665,7 +1665,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return aCurrentValue; @@ -1683,7 +1683,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return aCurrentValue; @@ -1712,7 +1712,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return aCurrentValue; @@ -1745,7 +1745,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } resumeValueListening(); diff --git a/forms/source/component/cachedrowset.cxx b/forms/source/component/cachedrowset.cxx index 3e88707e7b52..0f26c801a977 100644 --- a/forms/source/component/cachedrowset.cxx +++ b/forms/source/component/cachedrowset.cxx @@ -147,7 +147,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return xResult; } @@ -167,7 +167,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } } diff --git a/forms/source/component/propertybaghelper.cxx b/forms/source/component/propertybaghelper.cxx index 8adde794b8b4..30958a54b151 100644 --- a/forms/source/component/propertybaghelper.cxx +++ b/forms/source/component/propertybaghelper.cxx @@ -274,7 +274,7 @@ namespace frm catch( const RuntimeException& ) { throw; } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } Sequence< PropertyValue > aPropertyValues( aValues.getLength() ); PropertyValue* pPropertyValue = aPropertyValues.getArray(); diff --git a/forms/source/helper/commandimageprovider.cxx b/forms/source/helper/commandimageprovider.cxx index 1370b14c8663..570d58abe94d 100644 --- a/forms/source/helper/commandimageprovider.cxx +++ b/forms/source/helper/commandimageprovider.cxx @@ -87,7 +87,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.helper"); } // obtain the image manager or the module @@ -104,7 +104,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.helper"); } } @@ -142,7 +142,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.helper"); } return aImages; } diff --git a/forms/source/helper/windowstateguard.cxx b/forms/source/helper/windowstateguard.cxx index 148c8090b0b1..0202baa7404b 100644 --- a/forms/source/helper/windowstateguard.cxx +++ b/forms/source/helper/windowstateguard.cxx @@ -135,7 +135,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.helper"); } } diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index dbecde1ebdbf..dd228e81dc5c 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -157,7 +157,7 @@ void OInterfaceContainer::impl_addVbEvents_nolck_nothrow( const sal_Int32 i_nIn } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.misc"); } } @@ -226,7 +226,7 @@ void OInterfaceContainer::impl_createEventAttacher_nothrow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.misc"); } } @@ -400,7 +400,7 @@ void OInterfaceContainer::transformEvents() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.misc"); } } @@ -577,7 +577,7 @@ void SAL_CALL OInterfaceContainer::read( const Reference< XObjectInputStream >& } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.misc"); } } } diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx index 0223d45360d7..b88e4fa94fcb 100644 --- a/forms/source/richtext/richtextcontrol.cxx +++ b/forms/source/richtext/richtextcontrol.cxx @@ -136,7 +136,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.richtext"); } return nBits; } @@ -153,7 +153,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.richtext"); } if ( !bReallyActAsRichText ) diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index d1150a7b02b4..0bd7486952ac 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -937,7 +937,7 @@ namespace frm catch( const SQLException& ) { throw; } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.runtime"); bSuccess = false; } @@ -1094,7 +1094,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.runtime"); } m_xController.clear(); @@ -1409,7 +1409,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.runtime"); } return xField; @@ -1444,7 +1444,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.runtime"); } return -1; } @@ -1534,7 +1534,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.runtime"); } } diff --git a/forms/source/solar/component/navbarcontrol.cxx b/forms/source/solar/component/navbarcontrol.cxx index 020f8aa1ac68..725fe6edc44a 100644 --- a/forms/source/solar/component/navbarcontrol.cxx +++ b/forms/source/solar/component/navbarcontrol.cxx @@ -104,7 +104,7 @@ namespace frm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.component"); } return nBits; } diff --git a/forms/source/xforms/binding.cxx b/forms/source/xforms/binding.cxx index 05d40430d28e..feb5ac62826d 100644 --- a/forms/source/xforms/binding.cxx +++ b/forms/source/xforms/binding.cxx @@ -443,7 +443,7 @@ bool Binding::getExternalData() const } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.xforms"); } return bExternalData; } diff --git a/forms/source/xforms/submission/serialization_app_xml.cxx b/forms/source/xforms/submission/serialization_app_xml.cxx index 1d3d701e3c06..c8ad9ef642e3 100644 --- a/forms/source/xforms/submission/serialization_app_xml.cxx +++ b/forms/source/xforms/submission/serialization_app_xml.cxx @@ -112,7 +112,7 @@ CSerializationAppXML::serialize_node(const Reference< XNode >& rNode) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("forms.xforms"); } } |