summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-13 14:00:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-13 14:00:03 +0100
commit22684273d58b1ae9146fcc6c8dfceb90ddf846d9 (patch)
tree050b975cd1182213f0860adfc46adb7ccb264fa4 /include/comphelper
parenta60275ed8ca84a7fade2206bd8eed4e3bd7a8068 (diff)
forward*PropertyValue functions need not be SAL_CALL
...and _bSuccess parameter is unused Change-Id: Iee5e1d5c2d4272f342b2867bfe76f8c87dcd69d4
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/propagg.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/propagg.hxx b/include/comphelper/propagg.hxx
index 7765b6ca4656..8ec9e4d35f8d 100644
--- a/include/comphelper/propagg.hxx
+++ b/include/comphelper/propagg.hxx
@@ -301,7 +301,7 @@ protected:
@see declareForwardedProperty
@see forwardedPropertyValue
*/
- virtual void SAL_CALL forwardingPropertyValue( sal_Int32 _nHandle );
+ virtual void forwardingPropertyValue( sal_Int32 _nHandle );
/** called immediately after a property value which is overwritten in this instance
has been forwarded to the aggregate
@@ -309,7 +309,7 @@ protected:
@see declareForwardedProperty
@see forwardingPropertyValue
*/
- virtual void SAL_CALL forwardedPropertyValue( sal_Int32 _nHandle, bool _bSuccess );
+ virtual void forwardedPropertyValue( sal_Int32 _nHandle );
/// must be called before aggregation, if aggregation is used
void setAggregation(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >&) throw( ::com::sun::star::lang::IllegalArgumentException );