cppcheck: use prefix variant
This commit is contained in:
parent
88d4f48202
commit
f666ec38ff
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ SvXMLNamespaceMap::~SvXMLNamespaceMap()
|
|||
while ( aIter != aEnd )
|
||||
{
|
||||
const OUString *pString = (*aIter).first.second;
|
||||
aIter++;
|
||||
++aIter;
|
||||
delete pString;
|
||||
}
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ sal_uInt16 SvXMLNamespaceMap::GetKeyByName( const OUString& rName ) const
|
|||
nKey = (*aIter).second->nKey;
|
||||
break;
|
||||
}
|
||||
aIter++;
|
||||
++aIter;
|
||||
}
|
||||
return nKey;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue