summaryrefslogtreecommitdiff
path: root/forms/source/component/refvaluecomponent.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /forms/source/component/refvaluecomponent.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'forms/source/component/refvaluecomponent.hxx')
-rw-r--r--forms/source/component/refvaluecomponent.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/forms/source/component/refvaluecomponent.hxx b/forms/source/component/refvaluecomponent.hxx
index e609924f9b11..e8a9f111d789 100644
--- a/forms/source/component/refvaluecomponent.hxx
+++ b/forms/source/component/refvaluecomponent.hxx
@@ -64,30 +64,30 @@ namespace frm
DECLARE_DEFAULT_DTOR( OReferenceValueComponent );
// OPropertySet and friends
- virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle) const;
+ virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle) const SAL_OVERRIDE;
virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
- throw (::com::sun::star::uno::Exception, std::exception);
+ throw (::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL convertFastPropertyValue(
::com::sun::star::uno::Any& _rConvertedValue, ::com::sun::star::uno::Any& _rOldValue, sal_Int32 _nHandle, const ::com::sun::star::uno::Any& _rValue )
- throw (::com::sun::star::lang::IllegalArgumentException);
+ throw (::com::sun::star::lang::IllegalArgumentException) SAL_OVERRIDE;
virtual void describeFixedProperties(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
- ) const;
+ ) const SAL_OVERRIDE;
using ::cppu::OPropertySetHelper::getFastPropertyValue;
// OBoundControlModel overridables
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
- getSupportedBindingTypes();
+ getSupportedBindingTypes() SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any
- translateExternalValueToControlValue( const ::com::sun::star::uno::Any& _rExternalValue ) const;
+ translateExternalValueToControlValue( const ::com::sun::star::uno::Any& _rExternalValue ) const SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any
- translateControlValueToExternalValue( ) const;
+ translateControlValueToExternalValue( ) const SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any
- translateControlValueToValidatableValue( ) const;
+ translateControlValueToValidatableValue( ) const SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any
- getDefaultForReset() const;
+ getDefaultForReset() const SAL_OVERRIDE;
};