diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-08-10 22:35:46 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-08-10 22:36:26 +0200 |
commit | 9b85b65fb5367b4a5d1c2bd1eed14e3bafe45405 (patch) | |
tree | 073e809d2fd9e9a946f602dcb7a5eb89449cd0d0 /xmloff | |
parent | be88027c327b5f09d134f235db100ec54afdc30d (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ic8d149a78b2bc2bf352b7893202d0d0b6730746c
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLPropertyBackpatcher.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/text/XMLPropertyBackpatcher.cxx b/xmloff/source/text/XMLPropertyBackpatcher.cxx index 9e4f47dababe..6f15f10d9027 100644 --- a/xmloff/source/text/XMLPropertyBackpatcher.cxx +++ b/xmloff/source/text/XMLPropertyBackpatcher.cxx @@ -88,7 +88,7 @@ void XMLPropertyBackpatcher<A>::ResolveId( // preserve version for(BackpatchListType::iterator aIter = pList->begin(); aIter != pList->end(); - aIter++) + ++aIter) { Reference<XPropertySet> xProp = (*aIter); Any aPres = xProp->getPropertyValue(sPreservePropertyName); @@ -101,7 +101,7 @@ void XMLPropertyBackpatcher<A>::ResolveId( // without preserve for(BackpatchListType::iterator aIter = pList->begin(); aIter != pList->end(); - aIter++) + ++aIter) { (*aIter)->setPropertyValue(sPropertyName, aAny); } |