summaryrefslogtreecommitdiff
path: root/forms/source/inc/FormComponent.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/inc/FormComponent.hxx')
-rw-r--r--forms/source/inc/FormComponent.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/inc/FormComponent.hxx b/forms/source/inc/FormComponent.hxx
index 1b7c08d488a1..ac9f100e285a 100644
--- a/forms/source/inc/FormComponent.hxx
+++ b/forms/source/inc/FormComponent.hxx
@@ -197,7 +197,7 @@ public:
);
protected:
- virtual ~OControl();
+ virtual ~OControl() override;
/** sets the control as delegator at the aggregate
@@ -276,7 +276,7 @@ public:
const bool _bSetDelegator = true
);
- virtual ~OBoundControl();
+ virtual ~OBoundControl() override;
DECLARE_UNO3_AGG_DEFAULTS(OBoundControl, OControl)
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type& _rType ) throw(css::uno::RuntimeException, std::exception) override;
@@ -362,7 +362,7 @@ protected:
const bool _bCloneAggregate = true, // should the aggregate of the original be cloned, too?
const bool _bSetDelegator = true // set to sal_False if you want to call setDelegator later (after returning from this ctor)
);
- virtual ~OControlModel();
+ virtual ~OControlModel() override;
/** to be called after a OBoundControlModel (a derivee, respectively) has been cloned
@@ -522,7 +522,7 @@ public:
const classname* _pOriginal, \
const css::uno::Reference< css::uno::XComponentContext>& _rxFactory \
); \
- virtual ~classname() \
+ virtual ~classname() override \
#define IMPLEMENT_DEFAULT_CLONING( classname ) \
@@ -657,7 +657,7 @@ protected:
const css::uno::Reference< css::uno::XComponentContext>& _rxContext
// factory to create the aggregate with
);
- virtual ~OBoundControlModel();
+ virtual ~OBoundControlModel() override;
/// late ctor after cloning
virtual void clonedFrom( const OControlModel* _pOriginal ) override;