summaryrefslogtreecommitdiffstats
path: root/binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx')
-rw-r--r--binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx b/binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx
index 471e89641..483255d95 100644
--- a/binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx
+++ b/binfilter/bf_xmloff/source/style/xmloff_xmlnumfe.cxx
@@ -160,7 +160,7 @@ void SvXMLNumUsedList_Impl::Export()
std::pair<SvXMLuInt32Set::iterator, bool> aPair = aWasUsed.insert( *aItr );
if (aPair.second)
nWasUsedCount++;
- aItr++;
+ ++aItr;
}
aUsed.clear();
nUsedCount = 0;
@@ -184,7 +184,7 @@ sal_Bool SvXMLNumUsedList_Impl::GetNextUsed(sal_uInt32& nKey)
sal_Bool bRet(sal_False);
if (aCurrentUsedPos != aUsed.end())
{
- aCurrentUsedPos++;
+ ++aCurrentUsedPos;
if (aCurrentUsedPos != aUsed.end())
{
nKey = *aCurrentUsedPos;
@@ -204,7 +204,7 @@ void SvXMLNumUsedList_Impl::GetWasUsed(uno::Sequence<sal_Int32>& rWasUsed)
while (aItr != aWasUsed.end())
{
*pWasUsed = *aItr;
- aItr++;
+ ++aItr;
pWasUsed++;
}
}