summaryrefslogtreecommitdiff
path: root/sw/source/filter/basflt
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-06-25 00:01:52 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-25 09:11:16 +0200
commit087213c6a27de31d36d9ccb72a514048a0bb7724 (patch)
tree68fb37aad1e7b7bc51ec384c81ed75e72bbd81a6 /sw/source/filter/basflt
parent71d02f5b6ca78935df3d09ec0a5817f5870b056e (diff)
tdf#96099 Remove trivial container typedefs in stoc, svl, svx, sw
Change-Id: I0b4d18d2120ba2ce7d2526332bec199f52393290 Reviewed-on: https://gerrit.libreoffice.org/56363 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/basflt')
-rw-r--r--sw/source/filter/basflt/fltshell.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/basflt/fltshell.cxx b/sw/source/filter/basflt/fltshell.cxx
index 2b0b3c12bd7d..31c18bca7930 100644
--- a/sw/source/filter/basflt/fltshell.cxx
+++ b/sw/source/filter/basflt/fltshell.cxx
@@ -305,7 +305,7 @@ void SwFltControlStack::DeleteAndDestroy(Entries::size_type nCnt)
OSL_ENSURE(nCnt < m_Entries.size(), "Out of range!");
if (nCnt < m_Entries.size())
{
- myEIter aElement = m_Entries.begin() + nCnt;
+ auto aElement = m_Entries.begin() + nCnt;
m_Entries.erase(aElement);
}
//Clear the para end position recorded in reader intermittently for the least impact on loading performance
@@ -377,7 +377,7 @@ SwFltStackEntry* SwFltControlStack::SetAttr(const SwPosition& rPos,
(RES_FLTRATTR_BEGIN <= nAttrId && sal_uInt16(RES_FLTRATTR_END) > nAttrId),
"Wrong id for attribute");
- myEIter aI = m_Entries.begin();
+ auto aI = m_Entries.begin();
while (aI != m_Entries.end())
{
bool bLastEntry = aI == m_Entries.end() - 1;