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 /sd/source/ui/app/sdxfer.cxx | |
parent | ba263e124ce263c3c893542062d9c473f5aae589 (diff) |
convert SdrIterMode to scoped enum
Change-Id: Iaa4631039e6b96627d8e547f21136f107e157d8a
Diffstat (limited to 'sd/source/ui/app/sdxfer.cxx')
-rw-r--r-- | sd/source/ui/app/sdxfer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx index 6f07464ae178..cdf627953bfe 100644 --- a/sd/source/ui/app/sdxfer.cxx +++ b/sd/source/ui/app/sdxfer.cxx @@ -354,7 +354,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 ) { |