diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 23:42:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 08:04:23 +0100 |
commit | 07ab0d43b58cf7ee16c36016d6b9b70c0ebbb9b1 (patch) | |
tree | ac80d5449c42f832c14eb3fb3030208ae752b282 /forms/source/component/GroupManager.cxx | |
parent | 4a8175ebeb58555e5d48df134cfaf128293888f1 (diff) |
Get rid of DECLARE_STL_VECTOR
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
Diffstat (limited to 'forms/source/component/GroupManager.cxx')
-rw-r--r-- | forms/source/component/GroupManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx index 926c0cf34e79..19b6abb1640c 100644 --- a/forms/source/component/GroupManager.cxx +++ b/forms/source/component/GroupManager.cxx @@ -246,7 +246,7 @@ Sequence< Reference<XControlModel> > OGroup::GetControlModels() const Sequence<Reference<XControlModel> > aControlModelSeq( nLen ); Reference<XControlModel>* pModels = aControlModelSeq.getArray(); - ConstOGroupCompArrIterator aGroupComps = m_aCompArray.begin(); + OGroupCompArr::const_iterator aGroupComps = m_aCompArray.begin(); for (sal_Int32 i = 0; i < nLen; ++i, ++pModels, ++aGroupComps) { *pModels = aGroupComps->GetControlModel(); |