summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-07-14 20:02:17 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-07-14 20:02:17 +0200
commit3b2bcb45376e8c1dcc2cc30621681d05d71acddb (patch)
treead7e0068c6d79b50e71c38b358de94e3c0ad23a7
parent528b406bc2b9cc6dcbce54303f024d32fbe41e3f (diff)
Prefer prefix ++/-- operators for non-primitive types
Change-Id: If5fa32b0443f879f8218cdec38ce94aed0f965db
-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))