diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-10-01 14:06:22 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-10-01 14:53:10 +0200 |
commit | 22e748e68a87e1b470146eacad374c7dfef74f5a (patch) | |
tree | ac1c35ae78736cea81f8b40e1fe0ccddc672a1b1 /xmloff | |
parent | 1aa96d69af7173af7c8e32a47699f574b1091c73 (diff) |
Prefer prefix operator
Change-Id: I82f3f66bfc675dbc4a5d5b57d8715c3de01d9620
Reviewed-on: https://gerrit.libreoffice.org/42994
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
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; } } } |