summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpstory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpstory.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpstory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpstory.cxx b/lotuswordpro/source/filter/lwpstory.cxx
index f52cf6d6ebbe..1911229f3192 100644
--- a/lotuswordpro/source/filter/lwpstory.cxx
+++ b/lotuswordpro/source/filter/lwpstory.cxx
@@ -245,9 +245,9 @@ void LwpStory::SortPageLayout()
//put all the sorted layouts into list
m_LayoutList.clear();
- for( aIt = aLayoutList.begin(); aIt != aLayoutList.end(); ++aIt)
+ for (auto const& layout : aLayoutList)
{
- m_LayoutList.push_back(*aIt);
+ m_LayoutList.push_back(layout);
}
}