summaryrefslogtreecommitdiffstats
path: root/connectivity/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-06 14:02:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-06 14:47:37 +0000
commit6aca1e682ae4b12d4ee8ae8600cb88ae2a1151ab (patch)
treef70577f3bb6c16f41c9d8bfee95097db8656eaea /connectivity/source
parentcppunit: prefer prefix variant (diff)
downloadcore-6aca1e682ae4b12d4ee8ae8600cb88ae2a1151ab.tar.gz
core-6aca1e682ae4b12d4ee8ae8600cb88ae2a1151ab.zip
cppunit: prefer prefix variant
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx b/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx
index 4f1cbbeab47d..8f8dbba4edc5 100644
--- a/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx
+++ b/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx
@@ -286,7 +286,7 @@ namespace connectivity
IniSectionMap::iterator iBegin = mAllSection.begin();
IniSectionMap::iterator iEnd = mAllSection.end();
- for(;iBegin != iEnd;iBegin++)
+ for(;iBegin != iEnd;++iBegin)
{
ini_Section *aSection = &(*iBegin).second;
::rtl::OUString profileName;
@@ -296,7 +296,7 @@ namespace connectivity
for(NameValueList::iterator itor=aSection->lList.begin();
itor != aSection->lList.end();
- itor++)
+ ++itor)
{
struct ini_NameValue * aValue = &(*itor);
if (aValue->sName.equals(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Name"))))