summaryrefslogtreecommitdiff
path: root/forms/source/xforms/propertysetbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/propertysetbase.hxx')
-rw-r--r--forms/source/xforms/propertysetbase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/xforms/propertysetbase.hxx b/forms/source/xforms/propertysetbase.hxx
index a02a6a7e00bc..04dfa535879b 100644
--- a/forms/source/xforms/propertysetbase.hxx
+++ b/forms/source/xforms/propertysetbase.hxx
@@ -269,14 +269,14 @@ public:
one previously registered via <member>registerProperty</member>.
@see registerProperty
*/
- inline void getCurrentPropertyValueByHandle( sal_Int32 nHandle, css::uno::Any& /* [out] */ rValue, const NotifierAccess& ) const
+ void getCurrentPropertyValueByHandle( sal_Int32 nHandle, css::uno::Any& /* [out] */ rValue, const NotifierAccess& ) const
{
getFastPropertyValue( rValue, nHandle );
}
/** notifies a change in a given property to all interested listeners
*/
- inline void notifyPropertyChange( sal_Int32 nHandle, const css::uno::Any& rOldValue, const css::uno::Any& rNewValue, const NotifierAccess& ) const
+ void notifyPropertyChange( sal_Int32 nHandle, const css::uno::Any& rOldValue, const css::uno::Any& rNewValue, const NotifierAccess& ) const
{
const_cast< PropertySetBase* >( this )->firePropertyChange( nHandle, rNewValue, rOldValue );
}
@@ -325,13 +325,13 @@ public:
the handle of the property which is going to be changed. Must be a valid property
handle for the given <arg>rPropertySet</arg>
*/
- inline PropertyChangeNotifier( const PropertySetBase& rPropertySet, sal_Int32 nHandle )
+ PropertyChangeNotifier( const PropertySetBase& rPropertySet, sal_Int32 nHandle )
:m_rPropertySet( rPropertySet )
,m_nHandle( nHandle )
{
m_rPropertySet.getCurrentPropertyValueByHandle( m_nHandle, m_aOldValue, PropertySetBase::NotifierAccess() );
}
- inline ~PropertyChangeNotifier()
+ ~PropertyChangeNotifier()
{
css::uno::Any aNewValue;
m_rPropertySet.getCurrentPropertyValueByHandle( m_nHandle, aNewValue, PropertySetBase::NotifierAccess() );