summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par6.cxx
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-06-27 00:54:32 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-27 08:38:50 +0200
commit38b14b248029ea65fc778ede06e8b426b74451da (patch)
tree798f9e4b1789b4cacc147ef5f66507047d028b54 /sw/source/filter/ww8/ww8par6.cxx
parentf1d9aca4bf596c0a3be44483b1d60867f12683ec (diff)
tdf#96099 Remove some trivial std::deque typedefs
Change-Id: I101c8a39344ab007640aec9ddad6f82d4fe64296 Reviewed-on: https://gerrit.libreoffice.org/56504 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/ww8/ww8par6.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index 227fe8937a0f..2f81599eb5b6 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -635,8 +635,8 @@ SwSectionFormat *wwSectionManager::InsertSection(
return nullptr;
SwPageDesc *pPage = nullptr;
- mySegrIter aEnd = maSegments.rend();
- for (mySegrIter aIter = maSegments.rbegin(); aIter != aEnd; ++aIter)
+ auto aEnd = maSegments.rend();
+ for (auto aIter = maSegments.rbegin(); aIter != aEnd; ++aIter)
{
if (nullptr != (pPage = aIter->mpPage))
break;