summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/filter/ww8/ww8par.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 5c8abf363f01..37889068210a 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -4615,7 +4615,7 @@ sal_uLong SwWW8ImplReader::CoreLoad(WW8Glossary *pGloss, const SwPosition &rPos)
SwFlyFrmFmt* pPrevFlyFmt = 0;
// ggfs. Nachfolger ermitteln
SvxMSDffShapeTxBxSort::iterator tmpIter1 = it;
- tmpIter1++;
+ ++tmpIter1;
if( tmpIter1 != aTxBxSort.end() )
{
SvxMSDffShapeOrder *pNextOrder = *tmpIter1;
@@ -4627,7 +4627,7 @@ sal_uLong SwWW8ImplReader::CoreLoad(WW8Glossary *pGloss, const SwPosition &rPos)
if( it != aTxBxSort.begin() )
{
SvxMSDffShapeTxBxSort::iterator tmpIter2 = it;
- tmpIter2--;
+ --tmpIter2;
SvxMSDffShapeOrder *pPrevOrder = *tmpIter2;
if ((0xFFFF0000 & pOrder->nTxBxComp)
== (0xFFFF0000 & pPrevOrder->nTxBxComp))