From 22684273d58b1ae9146fcc6c8dfceb90ddf846d9 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 13 Mar 2014 14:00:03 +0100 Subject: forward*PropertyValue functions need not be SAL_CALL ...and _bSuccess parameter is unused Change-Id: Iee5e1d5c2d4272f342b2867bfe76f8c87dcd69d4 --- comphelper/source/property/propagg.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'comphelper') diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx index 5928578a1f2f..545da88d45f7 100644 --- a/comphelper/source/property/propagg.cxx +++ b/comphelper/source/property/propagg.cxx @@ -424,13 +424,13 @@ namespace internal } catch( const Exception& ) { - m_rAggregationHelper.forwardedPropertyValue( _nHandle, false ); + m_rAggregationHelper.forwardedPropertyValue( _nHandle ); throw; } m_nCurrentlyForwarding = -1; - m_rAggregationHelper.forwardedPropertyValue( _nHandle, true ); + m_rAggregationHelper.forwardedPropertyValue( _nHandle ); } } } @@ -1013,13 +1013,13 @@ void OPropertySetAggregationHelper::declareForwardedProperty( sal_Int32 _nHandle } -void SAL_CALL OPropertySetAggregationHelper::forwardingPropertyValue( sal_Int32 ) +void OPropertySetAggregationHelper::forwardingPropertyValue( sal_Int32 ) { // not interested in } -void SAL_CALL OPropertySetAggregationHelper::forwardedPropertyValue( sal_Int32, bool ) +void OPropertySetAggregationHelper::forwardedPropertyValue( sal_Int32 ) { // not interested in } -- cgit