summaryrefslogtreecommitdiff
path: root/forms/source/component/Currency.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/Currency.hxx')
-rw-r--r--forms/source/component/Currency.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/forms/source/component/Currency.hxx b/forms/source/component/Currency.hxx
index ce13dab89e18..dee2e9f6a8b5 100644
--- a/forms/source/component/Currency.hxx
+++ b/forms/source/component/Currency.hxx
@@ -32,37 +32,37 @@ class OCurrencyModel
css::uno::Any m_aSaveValue;
protected:
- virtual css::uno::Sequence< css::uno::Type> _getTypes() SAL_OVERRIDE;
+ virtual css::uno::Sequence< css::uno::Type> _getTypes() override;
public:
DECLARE_DEFAULT_LEAF_XTOR( OCurrencyModel );
// css::lang::XServiceInfo
OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) override
{ return OUString("com.sun.star.form.OCurrencyModel"); }
- virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
+ virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(std::exception) override;
// css::io::XPersistObject
- virtual OUString SAL_CALL getServiceName() throw ( ::com::sun ::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL getServiceName() throw ( ::com::sun ::star::uno::RuntimeException, std::exception) override;
// OControlModel's property handling
virtual void describeFixedProperties(
css::uno::Sequence< css::beans::Property >& /* [out] */ _rProps
- ) const SAL_OVERRIDE;
+ ) const override;
protected:
// OBoundControlModel overridables
- virtual css::uno::Any translateDbColumnToControlValue( ) SAL_OVERRIDE;
- virtual bool commitControlValueToDbColumn( bool _bPostReset ) SAL_OVERRIDE;
+ virtual css::uno::Any translateDbColumnToControlValue( ) override;
+ virtual bool commitControlValueToDbColumn( bool _bPostReset ) override;
- virtual css::uno::Any getDefaultForReset() const SAL_OVERRIDE;
+ virtual css::uno::Any getDefaultForReset() const override;
- virtual void resetNoBroadcast() SAL_OVERRIDE;
+ virtual void resetNoBroadcast() override;
protected:
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone( ) throw (css::uno::RuntimeException, std::exception) override;
void implConstruct();
};
@@ -70,16 +70,16 @@ protected:
class OCurrencyControl: public OBoundControl
{
protected:
- virtual css::uno::Sequence< css::uno::Type> _getTypes() SAL_OVERRIDE;
+ virtual css::uno::Sequence< css::uno::Type> _getTypes() override;
public:
explicit OCurrencyControl(const css::uno::Reference< css::uno::XComponentContext>& _rxContext);
// css::lang::XServiceInfo
OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) override
{ return OUString("com.sun.star.form.OCurrencyControl"); }
- virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE;
+ virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() throw(std::exception) override;
};