summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-02 11:25:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-02 11:25:47 +0200
commitcd93d5f36a8b94e6c2f1449a4ca1bdbdada83129 (patch)
tree52d25f6af1adf3b6cccf4999830e1705ebce6d95 /comphelper
parent75e3aaeae4d8ac1bed4111a5d0fdebfdda4215d2 (diff)
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Idbd718042e13e9c107c1a349c113656bf9468614
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/propertysethelper.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/property/propertysethelper.cxx b/comphelper/source/property/propertysethelper.cxx
index 9c522c721614..35b574fe9006 100644
--- a/comphelper/source/property/propertysethelper.cxx
+++ b/comphelper/source/property/propertysethelper.cxx
@@ -91,7 +91,7 @@ void SAL_CALL PropertySetHelper::setPropertyValue( const OUString& aPropertyName
aEntries[1] = NULL;
- _setPropertyValues( (const PropertyMapEntry**)aEntries, &aValue );
+ _setPropertyValues( aEntries, &aValue );
}
Any SAL_CALL PropertySetHelper::getPropertyValue( const OUString& PropertyName ) throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
@@ -105,7 +105,7 @@ Any SAL_CALL PropertySetHelper::getPropertyValue( const OUString& PropertyName )
aEntries[1] = NULL;
Any aAny;
- _getPropertyValues( (const PropertyMapEntry**)aEntries, &aAny );
+ _getPropertyValues( aEntries, &aAny );
return aAny;
}
@@ -154,7 +154,7 @@ void SAL_CALL PropertySetHelper::setPropertyValues( const Sequence< OUString >&
}
if( !bUnknown )
- _setPropertyValues( (const PropertyMapEntry**)pEntries.get(), rValues.getConstArray() );
+ _setPropertyValues( pEntries.get(), rValues.getConstArray() );
if( bUnknown )
throw RuntimeException( *pNames, static_cast< XPropertySet* >( this ) );
@@ -184,7 +184,7 @@ Sequence< Any > SAL_CALL PropertySetHelper::getPropertyValues(const Sequence< OU
if( !bUnknown )
{
aValues.realloc(nCount);
- _getPropertyValues( (const PropertyMapEntry**)pEntries.get(), aValues.getArray() );
+ _getPropertyValues( pEntries.get(), aValues.getArray() );
}
if( bUnknown )
@@ -221,7 +221,7 @@ PropertyState SAL_CALL PropertySetHelper::getPropertyState( const OUString& Prop
aEntries[1] = NULL;
PropertyState aState(PropertyState_AMBIGUOUS_VALUE);
- _getPropertyStates( (const PropertyMapEntry**)aEntries, &aState );
+ _getPropertyStates( aEntries, &aState );
return aState;
}
@@ -250,7 +250,7 @@ Sequence< PropertyState > SAL_CALL PropertySetHelper::getPropertyStates( const S
pEntries[nCount] = NULL;
if( !bUnknown )
- _getPropertyStates( (const PropertyMapEntry**)pEntries.get(), aStates.getArray() );
+ _getPropertyStates( pEntries.get(), aStates.getArray() );
if( bUnknown )
throw UnknownPropertyException( *pNames, static_cast< XPropertySet* >( this ) );