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 | |
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')
32 files changed, 167 insertions, 167 deletions
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx index b0cd940d60d3..83e507a54eb2 100644 --- a/svx/source/fmcomp/fmgridcl.cxx +++ b/svx/source/fmcomp/fmgridcl.cxx @@ -969,7 +969,7 @@ void FmGridHeader::PostExecuteColumnContextMenu(sal_uInt16 nColId, const PopupMe } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index 742db63c6cff..32bdc76ab2c9 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -574,7 +574,7 @@ void SAL_CALL FmXGridControl::createPeer(const Reference< css::awt::XToolkit >& } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -596,7 +596,7 @@ void SAL_CALL FmXGridControl::createPeer(const Reference< css::awt::XToolkit >& } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } Reference< css::awt::XView > xPeerView(getPeer(), UNO_QUERY); diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index b4ac9baf0263..d5edb7c1ff5f 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -124,8 +124,8 @@ namespace } catch( const Exception& ) { + DBG_UNHANDLED_EXCEPTION("svx"); OSL_FAIL( "getModelLineEndSetting: caught an exception!" ); - DBG_UNHANDLED_EXCEPTION(); } return eFormat; } @@ -254,7 +254,7 @@ void DbGridColumn::impl_toggleScriptManager_nothrow( bool _bAttach ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -571,8 +571,8 @@ DbCellControl::DbCellControl( DbGridColumn& _rColumn ) } catch( const Exception& ) { + DBG_UNHANDLED_EXCEPTION("svx"); OSL_FAIL( "DbCellControl::doPropertyListening: caught an exception!" ); - DBG_UNHANDLED_EXCEPTION(); } } @@ -594,8 +594,8 @@ void DbCellControl::implDoPropertyListening(const OUString& _rPropertyName, bool } catch( const Exception& ) { + DBG_UNHANDLED_EXCEPTION("svx"); OSL_FAIL( "DbCellControl::doPropertyListening: caught an exception!" ); - DBG_UNHANDLED_EXCEPTION(); } } @@ -695,7 +695,7 @@ bool DbCellControl::Commit() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // unlock the listening for value property changes unlockValueProperty(); @@ -891,7 +891,7 @@ void DbCellControl::Init( vcl::Window& rParent, const Reference< XRowSet >& _rxC } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } m_xCursor = _rxCursor; @@ -1095,7 +1095,7 @@ void DbTextField::Init( vcl::Window& rParent, const Reference< XRowSet >& xCurso catch( const Exception& ) { OSL_FAIL( "DbTextField::Init: caught an exception while determining the multi-line capabilities!" ); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_bIsSimpleEdit = !bIsMultiLine; @@ -1492,7 +1492,7 @@ OUString DbFormattedField::GetFormatText(const Reference< css::sdb::XColumn >& _ } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } aText = m_pPainter->GetText(); @@ -1537,7 +1537,7 @@ void DbFormattedField::UpdateFromField(const Reference< css::sdb::XColumn >& _rx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1633,7 +1633,7 @@ void DbCheckBox::Init( vcl::Window& rParent, const Reference< XRowSet >& xCursor } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } DbCellControl::Init( rParent, xCursor ); @@ -1659,7 +1659,7 @@ static void lcl_setCheckBoxState( const Reference< css::sdb::XColumn >& _rxFie } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } _pCheckBoxControl->GetBox().SetState(eState); @@ -1941,7 +1941,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return sValue; @@ -2082,7 +2082,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return sValue; @@ -2224,7 +2224,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return sDate; @@ -2332,7 +2332,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return sTime; @@ -2597,7 +2597,7 @@ OUString DbListBox::GetFormatText(const Reference< css::sdb::XColumn >& _rxField } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return sText; diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index 58962a5c9142..ba4cff36d95e 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -921,7 +921,7 @@ void DbGridRow::SetState(CursorWrapper* pCur, bool bPaintCursor) } catch(SQLException&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); m_aBookmark = Any(); m_eStatus = GridRowStatus::Invalid; m_bIsNew = false; @@ -1535,7 +1535,7 @@ void DbGridControl::setDataSource(const Reference< XRowSet >& _xCursor, DbGridCo } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } bool bPermanentCursor = IsPermanentCursorEnabled(); @@ -1599,7 +1599,7 @@ void DbGridControl::setDataSource(const Reference< XRowSet >& _xCursor, DbGridCo } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); m_nSeekPos = -1; } } @@ -2143,7 +2143,7 @@ bool DbGridControl::SetCurrent(long nNewRow) } catch ( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); EndCursorAction(); return false; } @@ -2441,7 +2441,7 @@ bool DbGridControl::SeekCursor(long nRow, bool bAbsolute) catch(Exception&) { OSL_FAIL("DbGridControl::SeekCursor : failed ..."); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); m_nSeekPos = -1; // no further data set available } } @@ -2523,7 +2523,7 @@ void DbGridControl::MoveToNext() } catch(SQLException &) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } if(!bOk) @@ -3016,7 +3016,7 @@ void DbGridControl::Undo() } catch(Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } EndCursorAction(); diff --git a/svx/source/form/databaselocationinput.cxx b/svx/source/form/databaselocationinput.cxx index 1f024b4bba50..f081ba554bb7 100644 --- a/svx/source/form/databaselocationinput.cxx +++ b/svx/source/form/databaselocationinput.cxx @@ -179,7 +179,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // ensure we have at least one extension diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx index 32bfa24097c9..fae5749f1f0c 100644 --- a/svx/source/form/datanavi.cxx +++ b/svx/source/form/datanavi.cxx @@ -472,7 +472,7 @@ namespace svxform } catch( Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -799,7 +799,7 @@ namespace svxform } catch ( Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return m_pItemList->InsertEntry( sName, aImage, aImage, pParent, false, TREELIST_APPEND, _pNewNode ); @@ -1546,7 +1546,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } aDlg->SetModifyDoc( bDocumentData ); @@ -1565,7 +1565,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/filtnav.cxx b/svx/source/form/filtnav.cxx index b5a0c9975a77..c6e4da5cc95d 100644 --- a/svx/source/form/filtnav.cxx +++ b/svx/source/form/filtnav.cxx @@ -314,7 +314,7 @@ void FmFilterAdapter::setText(sal_Int32 nRowPos, } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -338,7 +338,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return sLabelName; } @@ -353,7 +353,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return xField; } @@ -607,7 +607,7 @@ void FmFilterModel::Update(const Reference< XIndexAccess > & xControllers, FmPar } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -678,7 +678,7 @@ void FmFilterModel::SetCurrentController(const Reference< XFormController > & xC } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -707,7 +707,7 @@ void FmFilterModel::AppendFilterItems( FmFormItem& _rFormItem ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -771,7 +771,7 @@ void FmFilterModel::Remove(FmFilterData* pData) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } else // FormItems can not be deleted @@ -847,7 +847,7 @@ bool FmFilterModel::ValidateText(FmFilterItem const * pItem, OUString& rText, OU } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return false; @@ -903,7 +903,7 @@ void FmFilterModel::SetCurrentItems(FmFilterItems* pCurrent) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } if ( m_xController != pFormItem->GetController() ) diff --git a/svx/source/form/fmPropBrw.cxx b/svx/source/form/fmPropBrw.cxx index f3fd91f1f10b..6b64cd679b9e 100644 --- a/svx/source/form/fmPropBrw.cxx +++ b/svx/source/form/fmPropBrw.cxx @@ -274,7 +274,7 @@ void FmPropBrw::dispose() } catch (const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } ::SfxControllerItem::dispose(); SfxFloatingWindow::dispose(); @@ -379,7 +379,7 @@ bool FmPropBrw::implIsReadOnlyModel() const } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return true; } @@ -610,7 +610,7 @@ void FmPropBrw::impl_ensurePropertyBrowser_nothrow( FmFormShell* _pFormShell ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_xLastKnownDocument = xDocument; } diff --git a/svx/source/form/fmcontrollayout.cxx b/svx/source/form/fmcontrollayout.cxx index 22dfb220feb4..50d30afdc025 100644 --- a/svx/source/form/fmcontrollayout.cxx +++ b/svx/source/form/fmcontrollayout.cxx @@ -189,7 +189,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } diff --git a/svx/source/form/fmdocumentclassification.cxx b/svx/source/form/fmdocumentclassification.cxx index a3da6f381119..6a6ea00de881 100644 --- a/svx/source/form/fmdocumentclassification.cxx +++ b/svx/source/form/fmdocumentclassification.cxx @@ -139,7 +139,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return eType; diff --git a/svx/source/form/fmexch.cxx b/svx/source/form/fmexch.cxx index 653f93aca274..29aea2ffe67f 100644 --- a/svx/source/form/fmexch.cxx +++ b/svx/source/form/fmexch.cxx @@ -66,7 +66,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_bClipboardOwner = false; } diff --git a/svx/source/form/fmobj.cxx b/svx/source/form/fmobj.cxx index 98180032ebbf..5863ec9f38f6 100644 --- a/svx/source/form/fmobj.cxx +++ b/svx/source/form/fmobj.cxx @@ -137,7 +137,7 @@ void FmFormObj::impl_checkRefDevice_nothrow( bool _force ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -159,7 +159,7 @@ void FmFormObj::impl_isolateControlModel_nothrow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -216,7 +216,7 @@ void FmFormObj::SetPage(SdrPage* _pNewPage) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -260,7 +260,7 @@ void FmFormObj::SetPage(SdrPage* _pNewPage) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -303,7 +303,7 @@ void FmFormObj::SetPage(SdrPage* _pNewPage) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -659,7 +659,7 @@ bool FmFormObj::EndCreate( SdrDragStat& rStat, SdrCreateCmd eCmd ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/fmobjfac.cxx b/svx/source/form/fmobjfac.cxx index 22c9feb11499..d0169efd51c8 100644 --- a/svx/source/form/fmobjfac.cxx +++ b/svx/source/form/fmobjfac.cxx @@ -101,7 +101,7 @@ namespace catch( const Exception& ) { OSL_FAIL( "lcl_initProperty: caught an exception!" ); - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } 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"); } } diff --git a/svx/source/form/fmscriptingenv.cxx b/svx/source/form/fmscriptingenv.cxx index 53a993fb2f7d..36cb7274940f 100644 --- a/svx/source/form/fmscriptingenv.cxx +++ b/svx/source/form/fmscriptingenv.cxx @@ -918,7 +918,7 @@ namespace svxform catch( const RuntimeException& ) { throw; } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx index af82bc748a5c..0b98c9338a1e 100644 --- a/svx/source/form/fmshell.cxx +++ b/svx/source/form/fmshell.cxx @@ -1323,7 +1323,7 @@ void FmFormShell::ToggleControlFocus( const SdrUnoObj& i_rUnoObject, const SdrVi } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx index 3af5b2fdddc7..a21e90431d7b 100644 --- a/svx/source/form/fmshimp.cxx +++ b/svx/source/form/fmshimp.cxx @@ -339,7 +339,7 @@ namespace } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return -1; } @@ -677,7 +677,7 @@ Reference< css::frame::XModel > FmXFormShell::getContextDocument_Lock() const } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return xModel; } @@ -1239,7 +1239,7 @@ bool FmXFormShell::executeControlConversionSlot_Lock(const Reference<XFormCompon } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -1257,7 +1257,7 @@ bool FmXFormShell::executeControlConversionSlot_Lock(const Reference<XFormCompon } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -2874,7 +2874,7 @@ Reference< XControl> FmXFormShell::impl_getControl_Lock(const Reference<XControl } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } OSL_ENSURE( xControl.is(), "FmXFormShell::impl_getControl: no control found!" ); @@ -2934,7 +2934,7 @@ void FmXFormShell::impl_collectFormSearchContexts_nothrow_Lock( const Reference< } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -3009,7 +3009,7 @@ void saveFilter(const Reference< runtime::XFormController >& _rxController) } catch (const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -3108,7 +3108,7 @@ void FmXFormShell::stopFiltering_Lock(bool bSave) } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -3714,7 +3714,7 @@ void FmXFormShell::impl_defaultCurrentForm_nothrow_Lock() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -3818,7 +3818,7 @@ namespace } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return false; } @@ -3880,7 +3880,7 @@ void FmXFormShell::loadForms_Lock(FmFormPage* _pPage, const LoadFormsFlags _nBeh } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // reset the form if it was loaded @@ -3974,7 +3974,7 @@ bool FmXFormShell::HasControlFocus_Lock() const } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return bHasControlFocus; diff --git a/svx/source/form/fmsrcimp.cxx b/svx/source/form/fmsrcimp.cxx index 97329b6aae5b..c37dcd92a748 100644 --- a/svx/source/form/fmsrcimp.cxx +++ b/svx/source/form/fmsrcimp.cxx @@ -301,7 +301,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchSpecial(bool _bSearchForNull, // memorize the start position Any aStartMark; try { aStartMark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } FieldCollection::const_iterator iterInitialField = iterFieldLoop; @@ -324,7 +324,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchSpecial(bool _bSearchForNull, // will definitely go wrong again, thus abort. // Before, however, so that the search continues at the current position: try { m_aPreviousLocBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); } m_iterPreviousLocField = iterFieldLoop; // and leave return SearchResult::Error; @@ -332,7 +332,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchSpecial(bool _bSearchForNull, Any aCurrentBookmark; try { aCurrentBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } bMovedAround = EQUAL_BOOKMARKS(aStartMark, aCurrentBookmark) && (iterFieldLoop == iterInitialField); @@ -358,7 +358,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchWildcard(const OUString& strE // memorize the start position Any aStartMark; try { aStartMark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } FieldCollection::const_iterator iterInitialField = iterFieldLoop; WildCard aSearchExpression(strExpression); @@ -394,7 +394,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchWildcard(const OUString& strE // will definitely go wrong again, thus abort. // Before, however, so that the search continues at the current position: try { m_aPreviousLocBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); } m_iterPreviousLocField = iterFieldLoop; // and leave return SearchResult::Error; @@ -402,7 +402,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchWildcard(const OUString& strE Any aCurrentBookmark; try { aCurrentBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } bMovedAround = EQUAL_BOOKMARKS(aStartMark, aCurrentBookmark) && (iterFieldLoop == iterInitialField); @@ -433,7 +433,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchRegularApprox(const OUString& // memorize start position Any aStartMark; try { aStartMark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } FieldCollection::const_iterator iterInitialField = iterFieldLoop; // collect parameters @@ -513,7 +513,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchRegularApprox(const OUString& // notification, I expect it to be displayed in the Move). // Before, however, so that the search continues at the current position: try { m_aPreviousLocBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); } m_iterPreviousLocField = iterFieldLoop; // and leave return SearchResult::Error; @@ -521,7 +521,7 @@ FmSearchEngine::SearchResult FmSearchEngine::SearchRegularApprox(const OUString& Any aCurrentBookmark; try { aCurrentBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); return SearchResult::Error; } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); return SearchResult::Error; } bMovedAround = EQUAL_BOOKMARKS(aStartMark, aCurrentBookmark) && (iterFieldLoop == iterInitialField); if (nFieldPos == 0) @@ -744,7 +744,7 @@ void FmSearchEngine::SetFormatterUsing(bool bSet) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // I have to re-bind the fields, because the text exchange might take @@ -769,7 +769,7 @@ void FmSearchEngine::PropagateProgress(bool _bDontPropagateOverflow) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_aProgressHandler.Call(&aProgress); @@ -869,7 +869,7 @@ void FmSearchEngine::SearchNextImpl() { // memorize the position try { m_aPreviousLocBookmark = m_xSearchCursor.getBookmark(); } - catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } + catch ( const Exception& ) { DBG_UNHANDLED_EXCEPTION("svx"); } m_iterPreviousLocField = iterFieldCheck; } else @@ -909,7 +909,7 @@ void FmSearchEngine::OnSearchTerminated() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // by definition, the link must be thread-safe (I just require that), @@ -1003,7 +1003,7 @@ void FmSearchEngine::StartOver(const OUString& strExpression) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); return; } @@ -1023,7 +1023,7 @@ void FmSearchEngine::StartOverSpecial(bool _bSearchForNull) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); return; } diff --git a/svx/source/form/fmtextcontrolshell.cxx b/svx/source/form/fmtextcontrolshell.cxx index 86ff9b51be92..53cb3009bbb4 100644 --- a/svx/source/form/fmtextcontrolshell.cxx +++ b/svx/source/form/fmtextcontrolshell.cxx @@ -195,7 +195,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } osl_atomic_decrement( &m_refCount ); @@ -280,7 +280,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } osl_atomic_decrement( &m_refCount ); @@ -466,7 +466,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return bIsReadOnlyModel; } @@ -485,7 +485,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return pWindow; @@ -512,7 +512,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return bIsRichText; } @@ -743,7 +743,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -783,7 +783,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1042,7 +1042,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1084,7 +1084,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_xActiveController = _rxController; @@ -1270,7 +1270,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } Reference< XDispatch > xDispatcher = _rxProvider->queryDispatch( aFeatureURL, OUString(), 0xFF ); if ( xDispatcher.is() ) diff --git a/svx/source/form/fmundo.cxx b/svx/source/form/fmundo.cxx index a2f57d862acb..cffafa9aa822 100644 --- a/svx/source/form/fmundo.cxx +++ b/svx/source/form/fmundo.cxx @@ -132,7 +132,7 @@ private: } catch( Exception const & ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } FmFormModel& m_rModel; @@ -376,7 +376,7 @@ namespace } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return false; @@ -431,7 +431,7 @@ void FmXUndoEnvironment::Inserted(FmFormObj* pObj) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -497,7 +497,7 @@ void FmXUndoEnvironment::Removed(FmFormObj* pObj) } catch(Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -594,7 +594,7 @@ void SAL_CALL FmXUndoEnvironment::propertyChange(const PropertyChangeEvent& evt) } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } aSetPos = pCache->emplace(xSet,aNewEntry).first; @@ -635,7 +635,7 @@ void SAL_CALL FmXUndoEnvironment::propertyChange(const PropertyChangeEvent& evt) } catch(const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // insert the new entry diff --git a/svx/source/form/fmvwimp.cxx b/svx/source/form/fmvwimp.cxx index a6e647c5f909..cbf975fe0a2d 100644 --- a/svx/source/form/fmvwimp.cxx +++ b/svx/source/form/fmvwimp.cxx @@ -178,7 +178,7 @@ FormViewPageWindowAdapter::FormViewPageWindowAdapter( const css::uno::Reference< } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -212,7 +212,7 @@ void FormViewPageWindowAdapter::dispose() } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -384,7 +384,7 @@ void FormViewPageWindowAdapter::updateTabOrder( const Reference< XForm >& _rxFor } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -510,7 +510,7 @@ void SAL_CALL FmXFormView::elementInserted(const ContainerEvent& evt) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -849,7 +849,7 @@ bool FmXFormView::isFocusable( const Reference< XControl >& i_rControl ) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return false; } @@ -906,7 +906,7 @@ namespace } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -1003,7 +1003,7 @@ IMPL_LINK_NOARG(FmXFormView, OnAutoFocus, void*, void) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1068,7 +1068,7 @@ IMPL_LINK_NOARG( FmXFormView, OnStartControlWizard, void*, void ) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } const sal_Char* pWizardAsciiName = nullptr; @@ -1101,7 +1101,7 @@ IMPL_LINK_NOARG( FmXFormView, OnStartControlWizard, void*, void ) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } if ( !xWizard.is() ) @@ -1117,7 +1117,7 @@ IMPL_LINK_NOARG( FmXFormView, OnStartControlWizard, void*, void ) } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -1372,7 +1372,7 @@ SdrObject* FmXFormView::implCreateFieldControl( const svx::ODataAccessDescriptor } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } @@ -1673,7 +1673,7 @@ bool FmXFormView::createControlLabelPair( OutputDevice const & _rOutDev, sal_Int } catch (const Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/formcontrolfactory.cxx b/svx/source/form/formcontrolfactory.cxx index 3939717ea324..053819859676 100644 --- a/svx/source/form/formcontrolfactory.cxx +++ b/svx/source/form/formcontrolfactory.cxx @@ -174,7 +174,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return sLabel; } @@ -374,7 +374,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -501,7 +501,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return nClassId; } @@ -539,7 +539,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -637,7 +637,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx index 40d1157461e5..2632ed1e4f62 100644 --- a/svx/source/form/formcontroller.cxx +++ b/svx/source/form/formcontroller.cxx @@ -287,7 +287,7 @@ ColumnInfoCache::ColumnInfoCache( const Reference< XColumnsSupplier >& _rxColSup } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -405,7 +405,7 @@ void ColumnInfoCache::initializeControls( const Sequence< Reference< XControl > } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } m_bControlsInitialized = true; @@ -830,7 +830,7 @@ void FormController::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) cons } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); aFilter.setLength(0); } } @@ -1128,7 +1128,7 @@ void FormController::disposeAllFeaturesAndDispatchers() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } m_aFeatureDispatchers.clear(); @@ -1340,7 +1340,7 @@ bool FormController::replaceControl( const Reference< XControl >& _rxExistentCon } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } Reference< XControl > xDisposeIt( bSuccess ? _rxExistentControl : _rxNewControl ); @@ -1533,7 +1533,7 @@ void FormController::modified( const EventObject& _rEvent ) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } impl_onModify(); @@ -1694,7 +1694,7 @@ void FormController::focusGained(const FocusEvent& e) catch ( const Exception& ) { // don't handle this any further. That's an ... admissible error. - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } } @@ -1919,7 +1919,7 @@ void FormController::setModel(const Reference< XTabControllerModel > & Model) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -2193,7 +2193,7 @@ void FormController::setControlLock(const Reference< XControl > & xControl) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -2720,7 +2720,7 @@ void FormController::startFormListening( const Reference< XPropertySet >& _rxFor } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -2752,7 +2752,7 @@ void FormController::stopFormListening( const Reference< XPropertySet >& _rxForm } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -3046,7 +3046,7 @@ void FormController::setFilter(::std::vector<FmFieldInfo>& rFieldInfos) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -3539,7 +3539,7 @@ vcl::Window* FormController::getDialogParentWindow() } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return pParentWindow; } @@ -3580,7 +3580,7 @@ bool FormController::checkFormComponentValidity( OUString& /* [out] */ _rFirstIn } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return true; } @@ -3605,7 +3605,7 @@ Reference< XControl > FormController::locateControl( const Reference< XControlMo } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return nullptr; } @@ -3664,7 +3664,7 @@ namespace } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return true; @@ -3754,7 +3754,7 @@ sal_Bool SAL_CALL FormController::approveRowChange(const RowChangeEvent& _rEvent } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return true; @@ -3957,7 +3957,7 @@ sal_Bool SAL_CALL FormController::approveParameter(const DatabaseParameterEvent& } catch(Exception&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } return true; @@ -4039,7 +4039,7 @@ sal_Bool SAL_CALL FormController::confirmDelete(const RowChangeEvent& aEvent) } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return false; diff --git a/svx/source/form/formcontrolling.cxx b/svx/source/form/formcontrolling.cxx index 6144fecc933f..43c14e8faf9d 100644 --- a/svx/source/form/formcontrolling.cxx +++ b/svx/source/form/formcontrolling.cxx @@ -234,7 +234,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } osl_atomic_decrement( &m_refCount ); } @@ -249,7 +249,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -494,7 +494,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return bCanDo; } diff --git a/svx/source/form/formfeaturedispatcher.cxx b/svx/source/form/formfeaturedispatcher.cxx index 8442df2f0cdc..62b1d4635dbc 100644 --- a/svx/source/form/formfeaturedispatcher.cxx +++ b/svx/source/form/formfeaturedispatcher.cxx @@ -151,7 +151,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/form/navigatortreemodel.cxx b/svx/source/form/navigatortreemodel.cxx index 95a38b4f75a1..64311e2d9f44 100644 --- a/svx/source/form/navigatortreemodel.cxx +++ b/svx/source/form/navigatortreemodel.cxx @@ -698,7 +698,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } else if ( pObj->IsGroupObject() ) @@ -724,7 +724,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } else if ( pObj->IsGroupObject() ) @@ -765,7 +765,7 @@ namespace svxform } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); return false; } } diff --git a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx index f949f0803ac4..76552c8e7006 100644 --- a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx +++ b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx @@ -321,7 +321,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } _rControl.clear(); } @@ -931,7 +931,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1051,7 +1051,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // start listening at all aspects of the control which are interesting to us ... @@ -1118,7 +1118,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } if ( !bSuccess ) @@ -1202,7 +1202,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1233,7 +1233,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1264,7 +1264,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1283,7 +1283,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } return bIsPrintable; } @@ -1378,7 +1378,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1456,7 +1456,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -1636,7 +1636,7 @@ namespace sdr { namespace contact { } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index ae6c93494272..6726c2eafda3 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -356,7 +356,7 @@ SdrObject::~SdrObject() } catch( const uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } SendUserCall(SdrUserCallType::Delete, GetLastBoundRect()); diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx index 37bf711b05d2..6e364c33ade1 100644 --- a/svx/source/svdraw/svdouno.cxx +++ b/svx/source/svdraw/svdouno.cxx @@ -225,7 +225,7 @@ void SdrUnoObj::SetContextWritingMode( const sal_Int16 _nContextWritingMode ) } catch( const uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } @@ -278,7 +278,7 @@ SdrUnoObj& SdrUnoObj::operator= (const SdrUnoObj& rObj) } catch( const uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx index f32dcaf5dee1..7ff4129691ff 100644 --- a/svx/source/svdraw/svdpage.cxx +++ b/svx/source/svdraw/svdpage.cxx @@ -1191,7 +1191,7 @@ SdrPage::~SdrPage() } catch( const uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } // tell all the registered PageUsers that the page is in destruction diff --git a/svx/source/unodraw/shapepropertynotifier.cxx b/svx/source/unodraw/shapepropertynotifier.cxx index 2172ae081c90..3cb762eaf937 100644 --- a/svx/source/unodraw/shapepropertynotifier.cxx +++ b/svx/source/unodraw/shapepropertynotifier.cxx @@ -139,7 +139,7 @@ namespace svx } catch( const Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } } diff --git a/svx/source/xml/xmlexport.cxx b/svx/source/xml/xmlexport.cxx index 26574eb02c09..f34dcb5de520 100644 --- a/svx/source/xml/xmlexport.cxx +++ b/svx/source/xml/xmlexport.cxx @@ -121,7 +121,7 @@ bool SvxDrawingLayerExport( SdrModel* pModel, const uno::Reference<io::XOutputSt } catch(uno::Exception const&) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); bDocRet = false; } @@ -230,7 +230,7 @@ bool SvxDrawingLayerImport( SdrModel* pModel, const uno::Reference<io::XInputStr } catch( uno::Exception& ) { - DBG_UNHANDLED_EXCEPTION(); + DBG_UNHANDLED_EXCEPTION("svx"); } if( xGraphicHelper ) |