summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-08-27 06:09:45 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-08-27 06:11:07 +0200
commitc6040d9bd4c631ebdaab9383d9ab4de0c26657ce (patch)
tree41d99ac4bd47e865afb8c876acbbb603e2f3a57e
parent1b1f49f5d6f9d45992b427d9b2a897e329c7b297 (diff)
Bin intermediate iterator + rename parameter function
(see example of http://www.cplusplus.com/reference/vector/vector/erase/) Change-Id: I8c0ee334abd91ea99b80a43581a04cbbf9a91fa3
-rw-r--r--framework/source/fwe/helper/propertysetcontainer.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/framework/source/fwe/helper/propertysetcontainer.cxx b/framework/source/fwe/helper/propertysetcontainer.cxx
index a93c14f4af2f..52df1deb5c46 100644
--- a/framework/source/fwe/helper/propertysetcontainer.cxx
+++ b/framework/source/fwe/helper/propertysetcontainer.cxx
@@ -109,16 +109,14 @@ void SAL_CALL PropertySetContainer::insertByIndex( sal_Int32 Index, const ::com:
throw IndexOutOfBoundsException( OUString(), (OWeakObject *)this );
}
-void SAL_CALL PropertySetContainer::removeByIndex( sal_Int32 Index )
+void SAL_CALL PropertySetContainer::removeByIndex( sal_Int32 nIndex )
throw ( IndexOutOfBoundsException, WrappedTargetException, RuntimeException )
{
ResetableGuard aGuard( m_aLock );
- if ( (sal_Int32)m_aPropertySetVector.size() > Index )
+ if ( (sal_Int32)m_aPropertySetVector.size() > nIndex )
{
- PropertySetVector::iterator aIter = m_aPropertySetVector.begin();
- aIter += Index;
- m_aPropertySetVector.erase( aIter );
+ m_aPropertySetVector.erase(m_aPropertySetVector.begin() + nIndex);
}
else
throw IndexOutOfBoundsException( OUString(), (OWeakObject *)this );