Index: sw/source/filter/ww8/writerhelper.cxx =================================================================== --- sw/source/filter/ww8/writerhelper.cxx (revision 1355445) +++ sw/source/filter/ww8/writerhelper.cxx (working copy) @@ -141,9 +141,9 @@ { sw::Frames aRet; - for(SwPosFlyFrms::const_iterator aPos(rFlys.begin()); aPos != rFlys.end(); aPos++) + for(SwPosFlyFrms::const_iterator aIter(rFlys.begin()); aIter != rFlys.end(); aIter++) { - const SwFrmFmt &rEntry = (*aPos)->GetFmt(); + const SwFrmFmt &rEntry = (*aIter)->GetFmt(); if (const SwPosition* pAnchor = rEntry.GetAnchor().GetCntntAnchor()) { @@ -151,7 +151,7 @@ } else { - SwPosition aPos((*aPos)->GetNdIndex()); + SwPosition aPos((*aIter)->GetNdIndex()); if (SwTxtNode* pTxtNd = aPos.nNode.GetNode().GetTxtNode()) {