summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-02-09 10:01:00 +0100
committerJulien Nabet <serval2412@yahoo.fr>2014-02-09 10:01:00 +0100
commit742d3987319944308a42fcdc19592bc441b761c2 (patch)
treee383da0a11598ad9846a224595633888a5de56ce /xmloff
parent83cdcdb9f0fe11309939f5dca4fb46e426559896 (diff)
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I34446102091ef8be72d5aec603740db531fdd14b
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/shapeimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx
index 4dbb85f09748..acca56285387 100644
--- a/xmloff/source/draw/shapeimport.cxx
+++ b/xmloff/source/draw/shapeimport.cxx
@@ -1052,7 +1052,7 @@ sal_Int32 XMLShapeImportHelper::findGluePointMapping(
return (*aShapeIdIter).first;
}
- aShapeIdIter++;
+ ++aShapeIdIter;
}
}
}