cppcheck: use prefix variant
This commit is contained in:
parent
07f835791c
commit
f0316f43ea
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ void SAL_CALL SvxUnoNameItemTable::removeByName( const OUString& aApiName )
|
|||
maItemSetVector.erase( aIter );
|
||||
return;
|
||||
}
|
||||
aIter++;
|
||||
++aIter;
|
||||
}
|
||||
|
||||
if( !hasByName( Name ) )
|
||||
|
@ -195,7 +195,7 @@ void SAL_CALL SvxUnoNameItemTable::replaceByName( const OUString& aApiName, cons
|
|||
(*aIter)->Put( *pNewItem );
|
||||
return;
|
||||
}
|
||||
aIter++;
|
||||
++aIter;
|
||||
}
|
||||
|
||||
// if it is not in our own sets, modify the pool!
|
||||
|
|
Loading…
Reference in a new issue