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/view/tabvwshb.cxx | |
parent | ba263e124ce263c3c893542062d9c473f5aae589 (diff) |
convert SdrIterMode to scoped enum
Change-Id: Iaa4631039e6b96627d8e547f21136f107e157d8a
Diffstat (limited to 'sc/source/ui/view/tabvwshb.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwshb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |