diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlprmap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/xmlprmap.cxx b/xmloff/source/style/xmlprmap.cxx index 634e50afcf7f..a1e4d566576b 100644 --- a/xmloff/source/style/xmlprmap.cxx +++ b/xmloff/source/style/xmlprmap.cxx @@ -131,7 +131,7 @@ XMLPropertySetMapper::XMLPropertySetMapper( XMLPropertySetMapperEntry_Impl aEntry( *pIter, rFactory ); mpImpl->maMapEntries.push_back( aEntry ); } - pIter++; + ++pIter; } } else @@ -140,7 +140,7 @@ XMLPropertySetMapper::XMLPropertySetMapper( { XMLPropertySetMapperEntry_Impl aEntry( *pIter, rFactory ); mpImpl->maMapEntries.push_back( aEntry ); - pIter++; + ++pIter; } } } |