summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-19 16:36:43 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-19 16:36:43 +0000
commit813527ac60ceafeb6d35b3fcb3794914e610a373 (patch)
treeab486e3e24a095cbb566927a88b211c6f70797e1 /xmloff
parent71176efc647f76795e4ecfe857ca2a123938f7c9 (diff)
prefix prefix variant
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlexppr.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx
index 105906370b..b0404e70b9 100644
--- a/xmloff/source/style/xmlexppr.cxx
+++ b/xmloff/source/style/xmlexppr.cxx
@@ -308,7 +308,7 @@ const uno::Sequence<OUString>& FilterPropertiesInfo_Impl::GetApiNames()
FilterPropertyInfoList_Impl::iterator aOld = aPropInfos.begin();
FilterPropertyInfoList_Impl::iterator aEnd = aPropInfos.end();
FilterPropertyInfoList_Impl::iterator aCurrent = aOld;
- aCurrent++;
+ ++aCurrent;
while ( aCurrent != aEnd )
{
@@ -325,7 +325,7 @@ const uno::Sequence<OUString>& FilterPropertiesInfo_Impl::GetApiNames()
{
// remember old element and continue with next
aOld = aCurrent;
- aCurrent++;
+ ++aCurrent;
}
}
}
@@ -335,7 +335,7 @@ const uno::Sequence<OUString>& FilterPropertiesInfo_Impl::GetApiNames()
OUString *pNames = pApiNames->getArray();
FilterPropertyInfoList_Impl::iterator aItr = aPropInfos.begin();
FilterPropertyInfoList_Impl::iterator aEnd = aPropInfos.end();
- for ( ; aItr != aEnd; aItr++, pNames++)
+ for ( ; aItr != aEnd; ++aItr, ++pNames)
*pNames = aItr->GetApiName();
}
@@ -477,7 +477,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
pPropIter = aPropIters.begin();
XMLPropertyState aNewProperty( -1 );
- for( i = 0; i < nValueCount; i++ )
+ for( i = 0; i < nValueCount; ++i )
{
aNewProperty.mnIndex = -1;
aNewProperty.maValue = *pValues;
@@ -503,7 +503,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
const Any *pValues = aValues.getConstArray();
FilterPropertyInfoList_Impl::iterator aItr = aPropInfos.begin();
- for(sal_uInt32 i = 0; i < nCount; i++ )
+ for(sal_uInt32 i = 0; i < nCount; ++i)
{
// The value is stored in the PropertySet itself, add to list.
XMLPropertyState aNewProperty( -1 );
@@ -512,19 +512,19 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
for( std::list<sal_uInt32>::iterator aIndexItr =
aItr->GetIndexes().begin();
aIndexItr != aItr->GetIndexes().end();
- aIndexItr++ )
+ ++aIndexItr )
{
aNewProperty.mnIndex = *aIndexItr;
aPropStates.AddPropertyState( aNewProperty );
}
- aItr++;
+ ++aItr;
}
}
}
else
{
FilterPropertyInfoList_Impl::iterator aItr = aPropInfos.begin();
- for(sal_uInt32 i = 0; i < nCount; i++ )
+ for(sal_uInt32 i = 0; i < nCount; ++i)
{
sal_Bool bDirectValue =
!pStates || *pStates == PropertyState_DIRECT_VALUE;
@@ -536,7 +536,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
for( std::list<sal_uInt32>::const_iterator aIndexItr =
aItr->GetIndexes().begin();
aIndexItr != aItr->GetIndexes().end();
- aIndexItr++ )
+ ++aIndexItr )
{
if( bDirectValue ||
(rPropMapper->GetEntryFlags( *aIndexItr ) &
@@ -563,9 +563,9 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
}
}
- aItr++;
+ ++aItr;
if( pStates )
- pStates++;
+ ++pStates;
}
}
}