summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLPropertyBackpatcher.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLPropertyBackpatcher.cxx')
-rw-r--r--xmloff/source/text/XMLPropertyBackpatcher.cxx4
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);
}