diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-14 17:18:33 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-14 17:57:24 +0100 |
commit | 462a2ef92a7136e93d1d58045b176ad46b62348b (patch) | |
tree | c05e7d8cebf53d228405b56edd7064fce5620d99 /include | |
parent | ffbe0107e70184079d1042446a7c47cd260b6b43 (diff) |
Mark overriding OGeometryControlModel class template mem funs as SAL_OVERRIDE
Change-Id: I24947b132c3579a5dee33becd11e0059558eecbd
Diffstat (limited to 'include')
-rw-r--r-- | include/toolkit/controls/geometrycontrolmodel.hxx | 8 |
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; }; |