diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-13 14:00:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-13 14:00:03 +0100 |
commit | 22684273d58b1ae9146fcc6c8dfceb90ddf846d9 (patch) | |
tree | 050b975cd1182213f0860adfc46adb7ccb264fa4 /comphelper | |
parent | a60275ed8ca84a7fade2206bd8eed4e3bd7a8068 (diff) |
forward*PropertyValue functions need not be SAL_CALL
...and _bSuccess parameter is unused
Change-Id: Iee5e1d5c2d4272f342b2867bfe76f8c87dcd69d4
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/propagg.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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 } |