summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par5.cxx
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-06-26 00:37:36 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-26 09:29:25 +0200
commit20c4a9ce69e73a182d60718e9b52510d66c8f20e (patch)
treedde947221cfa9d662156416f01c0e4cbf4614c04 /sw/source/filter/ww8/ww8par5.cxx
parentaecd51754ec00faef7ad8f742d5e3cdbab470436 (diff)
tdf#96099 Remove some trivial container iterator typedefs
Change-Id: Ifec98748d55ff6aca64c425c50c2cf2650f61591 Reviewed-on: https://gerrit.libreoffice.org/56422 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/ww8/ww8par5.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par5.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx
index fdfdc2cd085f..9173f37edfaf 100644
--- a/sw/source/filter/ww8/ww8par5.cxx
+++ b/sw/source/filter/ww8/ww8par5.cxx
@@ -871,8 +871,8 @@ long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
bool bNested = false;
if (!m_aFieldStack.empty())
{
- mycFieldIter aEnd = m_aFieldStack.end();
- for(mycFieldIter aIter = m_aFieldStack.begin(); aIter != aEnd; ++aIter)
+ auto aEnd = m_aFieldStack.cend();
+ for(auto aIter = m_aFieldStack.cbegin(); aIter != aEnd; ++aIter)
{
bNested = !AcceptableNestedField(aIter->mnFieldId);
if (bNested)