summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-02-01 21:40:29 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-02-01 21:40:29 +0100
commit34c5059b80777244e25dee1299ea258c8d7ba4fe (patch)
tree376358552834904d0f2ca001e906b5f4b55398e1 /oox
parent428c9d516d3408460f1b7f8ce2c753b9a829de87 (diff)
Fix "Prefer prefix ++/-- operators for non-primitive types"
Diffstat (limited to 'oox')
-rw-r--r--oox/source/helper/propertymap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx
index 0bf875c9c655..bf92f7a73d3f 100644
--- a/oox/source/helper/propertymap.cxx
+++ b/oox/source/helper/propertymap.cxx
@@ -236,7 +236,7 @@ const Any* PropertyMap::getProperty( sal_Int32 nPropId ) const
void PropertyMap::assignAll( const PropertyMap& rPropMap )
{
- for( PropertyMap::const_iterator it=rPropMap.begin(); it != rPropMap.end(); it++ )
+ for( PropertyMap::const_iterator it=rPropMap.begin(); it != rPropMap.end(); ++it )
(*this)[it->first] = it->second;
}