diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-22 11:19:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-23 09:54:16 +0200 |
commit | e0b61fdd35462ff679743dff1203fb5dd50e86a4 (patch) | |
tree | 46720d942ff6c656da2b79204294469510591d69 /sc/source/ui | |
parent | ba263e124ce263c3c893542062d9c473f5aae589 (diff) |
convert SdrIterMode to scoped enum
Change-Id: Iaa4631039e6b96627d8e547f21136f107e157d8a
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/app/client.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/app/drwtrans.cxx | 12 | ||||
-rw-r--r-- | sc/source/ui/drawfunc/fupoor.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/drawfunc/fusel2.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 6 | ||||
-rw-r--r-- | sc/source/ui/uitest/uiobject.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/undo/undotab.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/chartuno.cxx | 8 | ||||
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/viewuno.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/dbfunc4.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/drawvie4.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/view/drawview.cxx | 6 | ||||
-rw-r--r-- | sc/source/ui/view/tabvwshb.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/viewfun5.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/view/viewfun7.cxx | 2 |
16 files changed, 31 insertions, 31 deletions
diff --git a/sc/source/ui/app/client.cxx b/sc/source/ui/app/client.cxx index a762755cd8c3..e8deabcc36f0 100644 --- a/sc/source/ui/app/client.cxx +++ b/sc/source/ui/app/client.cxx @@ -61,7 +61,7 @@ SdrOle2Obj* ScClient::GetDrawObj() for (sal_uInt16 nPNr=0; nPNr<nPages && !pOle2Obj; nPNr++) { SdrPage* pPage = pModel->GetPage(nPNr); - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject && !pOle2Obj) { diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx index b6c1487d021f..69e21d8e4e49 100644 --- a/sc/source/ui/app/drwtrans.cxx +++ b/sc/source/ui/app/drwtrans.cxx @@ -94,7 +94,7 @@ ScDrawTransferObj::ScDrawTransferObj( SdrModel* pClipModel, ScDocShell* pContain SdrPage* pPage = pModel->GetPage(0); if (pPage) { - SdrObjListIter aIter( *pPage, IM_FLAT ); + SdrObjListIter aIter( *pPage, SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); if (pObject && !aIter.Next()) // exactly one object? { @@ -260,7 +260,7 @@ static bool lcl_HasOnlyControls( SdrModel* pModel ) SdrPage* pPage = pModel->GetPage(0); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObj = aIter.Next(); if ( pObj ) { @@ -411,7 +411,7 @@ bool ScDrawTransferObj::GetData( const css::datatransfer::DataFlavor& rFlavor, c SdrPage* pPage = pModel->GetPage(0); if (pPage) { - SdrObjListIter aIter( *pPage, IM_FLAT ); + SdrObjListIter aIter( *pPage, SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); if (pObject && pObject->GetObjIdentifier() == OBJ_GRAF) { @@ -471,7 +471,7 @@ bool ScDrawTransferObj::WriteObject( tools::SvRef<SotStorageStream>& rxOStm, voi for(sal_uInt16 a(0); a < pModel->GetPageCount(); a++) { const SdrPage* pPage = pModel->GetPage(a); - SdrObjListIter aIter(*pPage, IM_DEEPNOGROUPS); + SdrObjListIter aIter(*pPage, SdrIterMode::DeepNoGroups); while(aIter.IsMore()) { @@ -680,7 +680,7 @@ SdrOle2Obj* ScDrawTransferObj::GetSingleObject() SdrPage* pPage = pModel->GetPage(0); if (pPage) { - SdrObjListIter aIter( *pPage, IM_FLAT ); + SdrObjListIter aIter( *pPage, SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); if (pObject && pObject->GetObjIdentifier() == OBJ_OLE2) { @@ -740,7 +740,7 @@ void ScDrawTransferObj::InitDocShell() SdrPage* pPage = pDestModel->GetPage(0); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/drawfunc/fupoor.cxx b/sc/source/ui/drawfunc/fupoor.cxx index f0b86395cc9f..73965e639051 100644 --- a/sc/source/ui/drawfunc/fupoor.cxx +++ b/sc/source/ui/drawfunc/fupoor.cxx @@ -224,7 +224,7 @@ bool FuPoor::IsDetectiveHit( const Point& rLogicPos ) return false; bool bFound = false; - SdrObjListIter aIter( *pPV->GetObjList(), IM_FLAT ); + SdrObjListIter aIter( *pPV->GetObjList(), SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); while (pObject && !bFound) { diff --git a/sc/source/ui/drawfunc/fusel2.cxx b/sc/source/ui/drawfunc/fusel2.cxx index 6894c81cd528..61ba449bb906 100644 --- a/sc/source/ui/drawfunc/fusel2.cxx +++ b/sc/source/ui/drawfunc/fusel2.cxx @@ -52,7 +52,7 @@ bool FuSelection::TestDetective( SdrPageView* pPV, const Point& rPos ) return false; bool bFound = false; - SdrObjListIter aIter( *pPV->GetObjList(), IM_FLAT ); + SdrObjListIter aIter( *pPV->GetObjList(), SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); while (pObject && !bFound) { @@ -131,7 +131,7 @@ bool FuSelection::IsNoteCaptionClicked( const Point& rPos ) const bool bProtectDoc = rDoc.IsTabProtected( nTab ) || (pDocSh && pDocSh->IsReadOnly()); // search the last object (on top) in the object list - SdrObjListIter aIter( *pPageView->GetObjList(), IM_DEEPNOGROUPS, true ); + SdrObjListIter aIter( *pPageView->GetObjList(), SdrIterMode::DeepNoGroups, true ); for( SdrObject* pObj = aIter.Next(); pObj; pObj = aIter.Next() ) { if( pObj->GetLogicRect().IsInside( rPos ) ) diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index 44de2427dd94..8b6768cee6e0 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -164,7 +164,7 @@ OUString ScContentTree::getAltLongDescText( SvTreeListEntry* pEntry, bool isAltT { SdrObject* pFound = nullptr; ScDocument* pDoc = ( const_cast< ScContentTree* >(this) )->GetSourceDocument(); - SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? IM_FLAT : IM_DEEPNOGROUPS; + SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? SdrIterMode::Flat : SdrIterMode::DeepNoGroups; ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer(); SfxObjectShell* pShell = pDoc->GetDocumentShell(); if (pDrawLayer && pShell) @@ -933,7 +933,7 @@ void ScContentTree::GetDrawNames( ScContentId nType ) return; // iterate in flat mode for groups - SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? IM_FLAT : IM_DEEPNOGROUPS; + SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? SdrIterMode::Flat : SdrIterMode::DeepNoGroups; ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer(); SfxObjectShell* pShell = pDoc->GetDocumentShell(); @@ -1140,7 +1140,7 @@ bool ScContentTree::DrawNamesChanged( ScContentId nType ) SvTreeListEntry* pEntry = FirstChild( pParent ); // iterate in flat mode for groups - SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? IM_FLAT : IM_DEEPNOGROUPS; + SdrIterMode eIter = ( nType == ScContentId::DRAWING ) ? SdrIterMode::Flat : SdrIterMode::DeepNoGroups; bool bEqual = true; ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer(); diff --git a/sc/source/ui/uitest/uiobject.cxx b/sc/source/ui/uitest/uiobject.cxx index 8e2044baec9f..9fcf21861f62 100644 --- a/sc/source/ui/uitest/uiobject.cxx +++ b/sc/source/ui/uitest/uiobject.cxx @@ -196,7 +196,7 @@ std::set<OUString> collect_charts(VclPtr<ScGridWindow> const & xGridWindow) if (!pPage) return aRet; - SdrObjListIter aIter( *pPage, IM_FLAT ); + SdrObjListIter aIter( *pPage, SdrIterMode::Flat ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/undo/undotab.cxx b/sc/source/ui/undo/undotab.cxx index 351842ae20b1..4470fc1231fc 100644 --- a/sc/source/ui/undo/undotab.cxx +++ b/sc/source/ui/undo/undotab.cxx @@ -1462,7 +1462,7 @@ SdrObject* ScUndoRenameObject::GetObject() SdrPage* pPage = pDrawLayer->GetPage(nTab); assert(pPage && "Page ?"); - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx index b974560f7a9b..311353a1d3c1 100644 --- a/sc/source/ui/unoobj/chartuno.cxx +++ b/sc/source/ui/unoobj/chartuno.cxx @@ -66,7 +66,7 @@ static SdrOle2Obj* lcl_FindChartObj( ScDocShell* pDocShell, SCTAB nTab, const OU OSL_ENSURE(pPage, "Page nicht gefunden"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { @@ -128,7 +128,7 @@ ScChartObj* ScChartsObj::GetObjectByIndex_Impl(long nIndex) const if (pPage) { long nPos = 0; - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { @@ -340,7 +340,7 @@ sal_Int32 SAL_CALL ScChartsObj::getCount() throw(uno::RuntimeException, std::exc OSL_ENSURE(pPage, "Page nicht gefunden"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { @@ -409,7 +409,7 @@ uno::Sequence<OUString> SAL_CALL ScChartsObj::getElementNames() throw(uno::Runti OSL_ENSURE(pPage, "Page nicht gefunden"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 442ad4c8da20..57c83e9999be 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -1229,7 +1229,7 @@ static bool lcl_ParseTarget( const OUString& rTarget, ScRange& rTargetRange, Rec OSL_ENSURE(pPage,"Page ?"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject && !bRangeValid) { diff --git a/sc/source/ui/unoobj/viewuno.cxx b/sc/source/ui/unoobj/viewuno.cxx index f9081072beaf..a1cf8d282bdb 100644 --- a/sc/source/ui/unoobj/viewuno.cxx +++ b/sc/source/ui/unoobj/viewuno.cxx @@ -655,7 +655,7 @@ static void lcl_ShowObject( ScTabViewShell& rViewSh, ScDrawView& rDrawView, SdrO SdrPage* pPage = pModel->GetPage(i); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject && !bFound) { diff --git a/sc/source/ui/view/dbfunc4.cxx b/sc/source/ui/view/dbfunc4.cxx index 7c9f27987bbb..cae85ae9ad83 100644 --- a/sc/source/ui/view/dbfunc4.cxx +++ b/sc/source/ui/view/dbfunc4.cxx @@ -41,7 +41,7 @@ sal_uInt16 ScDBFunc::DoUpdateCharts( const ScAddress& rPos, ScDocument* pDoc, bo SdrPage* pPage = pModel->GetPage(nPageNo); OSL_ENSURE(pPage,"Page ?"); - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/view/drawvie4.cxx b/sc/source/ui/view/drawvie4.cxx index cbbc3af03f1c..0fafd4d34b2a 100644 --- a/sc/source/ui/view/drawvie4.cxx +++ b/sc/source/ui/view/drawvie4.cxx @@ -70,7 +70,7 @@ void ScDrawView::CheckOle( const SdrMarkList& rMarkList, bool& rAnyOle, bool& rO } else if ( dynamic_cast<const SdrObjGroup*>( pObj) != nullptr ) { - SdrObjListIter aIter( *pObj, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pObj, SdrIterMode::DeepNoGroups ); SdrObject* pSubObj = aIter.Next(); while (pSubObj) { @@ -251,7 +251,7 @@ void getChartSourceRanges(ScDocument* pDoc, const SdrMarkList& rObjs, std::vecto break; case OBJ_GRUP: { - SdrObjListIter aIter(*pObj, IM_DEEPNOGROUPS); + SdrObjListIter aIter(*pObj, SdrIterMode::DeepNoGroups); for (SdrObject* pSubObj = aIter.Next(); pSubObj; pSubObj = aIter.Next()) { if (pSubObj->GetObjIdentifier() != OBJ_OLE2) diff --git a/sc/source/ui/view/drawview.cxx b/sc/source/ui/view/drawview.cxx index 76b6c2783eae..4003cd86a695 100644 --- a/sc/source/ui/view/drawview.cxx +++ b/sc/source/ui/view/drawview.cxx @@ -656,7 +656,7 @@ SdrObject* ScDrawView::GetObjectByName(const OUString& rName) DBG_ASSERT(pPage,"Page ?"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { @@ -690,7 +690,7 @@ void ScDrawView::SelectCurrentViewObject( const OUString& rName ) DBG_ASSERT(pPage,"Page ?"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject && !pFound) { @@ -744,7 +744,7 @@ bool ScDrawView::SelectObject( const OUString& rName ) OSL_ENSURE(pPage,"Page ?"); if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject && !pFound) { diff --git a/sc/source/ui/view/tabvwshb.cxx b/sc/source/ui/view/tabvwshb.cxx index ec7ce83e3c72..d25958848db5 100644 --- a/sc/source/ui/view/tabvwshb.cxx +++ b/sc/source/ui/view/tabvwshb.cxx @@ -400,7 +400,7 @@ void ScTabViewShell::ExecDrawIns(SfxRequest& rReq) pNewDBField->NbcSetLayer(SC_LAYER_FRONT); if (dynamic_cast<const SdrObjGroup*>( pNewDBField) != nullptr) { - SdrObjListIter aIter( *pNewDBField, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pNewDBField, SdrIterMode::DeepWithGroups ); SdrObject* pSubObj = aIter.Next(); while (pSubObj) { diff --git a/sc/source/ui/view/viewfun5.cxx b/sc/source/ui/view/viewfun5.cxx index 4d983797914b..56684efc5055 100644 --- a/sc/source/ui/view/viewfun5.cxx +++ b/sc/source/ui/view/viewfun5.cxx @@ -438,7 +438,7 @@ bool ScViewFunc::PasteDataFormat( SotClipboardFormatId nFormatId, pObj->NbcSetLayer(SC_LAYER_FRONT); if (dynamic_cast<const SdrObjGroup*>( pObj) != nullptr) { - SdrObjListIter aIter( *pObj, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pObj, SdrIterMode::DeepWithGroups ); SdrObject* pSubObj = aIter.Next(); while (pSubObj) { @@ -505,7 +505,7 @@ bool ScViewFunc::PasteDataFormat( SotClipboardFormatId nFormatId, for (sal_uInt16 i=0; i<nPages; i++) { SdrPage* pPage = pModel->GetPage(i); - SdrObjListIter aIter( *pPage, IM_DEEPWITHGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepWithGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { diff --git a/sc/source/ui/view/viewfun7.cxx b/sc/source/ui/view/viewfun7.cxx index da2bdba0d113..5e769f87c7bd 100644 --- a/sc/source/ui/view/viewfun7.cxx +++ b/sc/source/ui/view/viewfun7.cxx @@ -232,7 +232,7 @@ void ScViewFunc::PasteDraw( const Point& rLogicPos, SdrModel* pModel, // controls must be on SC_LAYER_CONTROLS if (pPage) { - SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS ); + SdrObjListIter aIter( *pPage, SdrIterMode::DeepNoGroups ); SdrObject* pObject = aIter.Next(); while (pObject) { |