summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-01 21:09:51 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-01 21:09:51 +0000
commitded41367ba25e3c25a64948ba2f6138fc66b989b (patch)
tree336b5894cb5165e2db0c2098734659ee3099eeb5 /unotools
parentb3ef3fae37eae3458f1cbcd190549fbc7221f7bd (diff)
cppcheck: prefer prefix variant
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/extendedsecurityoptions.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/extendedsecurityoptions.cxx b/unotools/source/config/extendedsecurityoptions.cxx
index 74ddfe622c0b..db64545f9acb 100644
--- a/unotools/source/config/extendedsecurityoptions.cxx
+++ b/unotools/source/config/extendedsecurityoptions.cxx
@@ -342,7 +342,7 @@ Sequence< OUString > SvtExtendedSecurityOptions_Impl::GetSecureExtensionList() c
sal_Int32 nIndex = 0;
for ( ExtensionHashMap::const_iterator pIter = m_aExtensionHashMap.begin();
- pIter != m_aExtensionHashMap.end(); pIter++ )
+ pIter != m_aExtensionHashMap.end(); ++pIter )
{
aResult[nIndex++] = pIter->first;
}