summaryrefslogtreecommitdiff
path: root/framework/source/services/frame.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/services/frame.cxx')
-rw-r--r--framework/source/services/frame.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 0357a4955b82..4597eedb4549 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -1981,13 +1981,10 @@ css::uno::Sequence< css::beans::Property > SAL_CALL Frame::getProperties()
sal_Int32 c = static_cast<sal_Int32>(m_lProps.size());
css::uno::Sequence< css::beans::Property > lProps(c);
- TPropInfoHash::const_iterator pIt;
- for ( pIt = m_lProps.begin();
- pIt != m_lProps.end();
- ++pIt )
+ for (auto const& elem : m_lProps)
{
- lProps[--c] = pIt->second;
+ lProps[--c] = elem.second;
}
return lProps;