diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-03-29 23:55:24 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-03-29 23:56:31 +0200 |
commit | e511a7d6390cdc0a24a33c2870a9d6bf6522267a (patch) | |
tree | cc6b1f062ef3954e55eacf7ccf1f5e0d8731f978 /connectivity | |
parent | 7c9e637bdebbc3688f3d321048f77b480b58dc24 (diff) |
Fixes a bunch of "Prefer prefix ++/-- operators for non-primitive types"
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx b/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx index 98a4a949507c..8f28db88edaa 100644 --- a/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx +++ b/connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx @@ -282,7 +282,7 @@ namespace connectivity sal_Int32 i=0; for(ProfileList::iterator itor=m_Product.mProfileList.begin(); itor != m_Product.mProfileList.end(); - itor++) + ++itor) { ProfileStruct * aProfile = (*itor).second; list[i] = aProfile->getProfileName(); |