summaryrefslogtreecommitdiff
path: root/include/toolkit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-14 17:18:33 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-14 17:57:24 +0100
commit462a2ef92a7136e93d1d58045b176ad46b62348b (patch)
treec05e7d8cebf53d228405b56edd7064fce5620d99 /include/toolkit
parentffbe0107e70184079d1042446a7c47cd260b6b43 (diff)
Mark overriding OGeometryControlModel class template mem funs as SAL_OVERRIDE
Change-Id: I24947b132c3579a5dee33becd11e0059558eecbd
Diffstat (limited to 'include/toolkit')
-rw-r--r--include/toolkit/controls/geometrycontrolmodel.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/toolkit/controls/geometrycontrolmodel.hxx b/include/toolkit/controls/geometrycontrolmodel.hxx
index 302b64258c54..3c7144445d1a 100644
--- a/include/toolkit/controls/geometrycontrolmodel.hxx
+++ b/include/toolkit/controls/geometrycontrolmodel.hxx
@@ -195,17 +195,17 @@ namespace com { namespace sun { namespace star {
virtual void fillProperties(
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rProps,
::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rAggregateProps
- ) const;
+ ) const SAL_OVERRIDE;
// OPropertySetAggregationHelper overridables
- virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
+ virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE;
// OGeometryControlModel_Base
virtual OGeometryControlModel_Base* createClone_Impl(
- ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance);
+ ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance) SAL_OVERRIDE;
// XTypeProvider
- virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw (::com::sun::star::uno::RuntimeException, std::exception);
+ virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};