summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmloff/source/core/DocumentSettingsContext.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/core/DocumentSettingsContext.cxx b/xmloff/source/core/DocumentSettingsContext.cxx
index 4fd06b7f914f..c77731b2fd82 100644
--- a/xmloff/source/core/DocumentSettingsContext.cxx
+++ b/xmloff/source/core/DocumentSettingsContext.cxx
@@ -103,8 +103,8 @@ uno::Sequence<beans::PropertyValue> XMLMyList::GetSequence()
while (aItr != aProps.end())
{
*pProps = *aItr;
- pProps++;
- aItr++;
+ ++pProps;
+ ++aItr;
}
}
return aSeq;
@@ -128,7 +128,7 @@ uno::Reference<container::XNameContainer> XMLMyList::GetNameContainer()
while (aItr != aProps.end())
{
xNameContainer->insertByName(aItr->Name, aItr->Value);
- aItr++;
+ ++aItr;
}
}
}
@@ -153,8 +153,8 @@ uno::Reference<container::XIndexContainer> XMLMyList::GetIndexContainer()
while (aItr != aProps.end())
{
xIndexContainer->insertByIndex(i, aItr->Value);
- aItr++;
- i++;
+ ++aItr;
+ ++i;
}
}
}