summaryrefslogtreecommitdiff
path: root/forms/source/component/Numeric.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/Numeric.hxx')
-rw-r--r--forms/source/component/Numeric.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/forms/source/component/Numeric.hxx b/forms/source/component/Numeric.hxx
index 1a3f45f138ff..985bebd02988 100644
--- a/forms/source/component/Numeric.hxx
+++ b/forms/source/component/Numeric.hxx
@@ -36,32 +36,32 @@ class ONumericModel
private:
::com::sun::star::uno::Any m_aSaveValue;
protected:
- virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes();
+ virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
public:
DECLARE_DEFAULT_LEAF_XTOR( ONumericModel );
// ::com::sun::star::lang::XServiceInfo
IMPLEMENTATION_NAME(ONumericModel);
- virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception);
+ virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
// ::com::sun::star::io::XPersistObject
- virtual OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException, std::exception);
+ virtual OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// OControlModel's property handling
virtual void describeFixedProperties(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps
- ) const;
+ ) const SAL_OVERRIDE;
protected:
// OBoundControlModel overridables
virtual ::com::sun::star::uno::Any
- translateDbColumnToControlValue( );
- virtual sal_Bool commitControlValueToDbColumn( bool _bPostReset );
+ translateDbColumnToControlValue( ) SAL_OVERRIDE;
+ virtual sal_Bool commitControlValueToDbColumn( bool _bPostReset ) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any
- getDefaultForReset() const;
- virtual void resetNoBroadcast();
+ getDefaultForReset() const SAL_OVERRIDE;
+ virtual void resetNoBroadcast() SAL_OVERRIDE;
protected:
DECLARE_XCLONEABLE();
@@ -73,14 +73,14 @@ protected:
class ONumericControl: public OBoundControl
{
protected:
- virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes();
+ virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> _getTypes() SAL_OVERRIDE;
public:
ONumericControl(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxFactory);
// ::com::sun::star::lang::XServiceInfo
IMPLEMENTATION_NAME(ONumericControl);
- virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception);
+ virtual StringSequence SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
};