summaryrefslogtreecommitdiff
path: root/framework/inc/helper/oframes.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /framework/inc/helper/oframes.hxx
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'framework/inc/helper/oframes.hxx')
-rw-r--r--framework/inc/helper/oframes.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/inc/helper/oframes.hxx b/framework/inc/helper/oframes.hxx
index 9f177c467a4f..cde5d5576ddb 100644
--- a/framework/inc/helper/oframes.hxx
+++ b/framework/inc/helper/oframes.hxx
@@ -80,7 +80,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
@param "xFrame", reference to an existing frame to append.
@onerror We do nothing in release or throw an assert in debug version.
*//*-*****************************************************************************************************/
- virtual void SAL_CALL append( const css::uno::Reference< css::frame::XFrame >& xFrame ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual void SAL_CALL append( const css::uno::Reference< css::frame::XFrame >& xFrame ) throw( css::uno::RuntimeException, std::exception ) override;
/*-****************************************************************************************************
@short remove frame from container
@@ -92,7 +92,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
@param "xFrame", reference to an existing frame to remove.
@onerror We do nothing in release or throw an assert in debug version.
*//*-*****************************************************************************************************/
- virtual void SAL_CALL remove( const css::uno::Reference< css::frame::XFrame >& xFrame ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual void SAL_CALL remove( const css::uno::Reference< css::frame::XFrame >& xFrame ) throw( css::uno::RuntimeException, std::exception ) override;
/*-****************************************************************************************************
@short return list of all applicable frames for given flags
@@ -102,7 +102,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
@onerror An empty list is returned.
*//*-*****************************************************************************************************/
- virtual css::uno::Sequence< css::uno::Reference< css::frame::XFrame > > SAL_CALL queryFrames( sal_Int32 nSearchFlags ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual css::uno::Sequence< css::uno::Reference< css::frame::XFrame > > SAL_CALL queryFrames( sal_Int32 nSearchFlags ) throw( css::uno::RuntimeException, std::exception ) override;
// XIndexAccess
@@ -117,7 +117,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
@onerror If a lock is set, we return 0 for prevent further access!
*//*-*****************************************************************************************************/
- virtual sal_Int32 SAL_CALL getCount() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual sal_Int32 SAL_CALL getCount() throw( css::uno::RuntimeException, std::exception ) override;
/*-****************************************************************************************************
@short get specified container item by index
@@ -135,7 +135,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
*//*-*****************************************************************************************************/
virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 nIndex ) throw( css::lang::IndexOutOfBoundsException ,
css::lang::WrappedTargetException ,
- css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception ) override;
// XElementAccess
@@ -145,7 +145,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
(container-lock is ignored)
@return A uno-type descriptor.
*//*-*****************************************************************************************************/
- virtual css::uno::Type SAL_CALL getElementType() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual css::uno::Type SAL_CALL getElementType() throw( css::uno::RuntimeException, std::exception ) override;
/*-****************************************************************************************************
@short get fill state of current container
@@ -156,7 +156,7 @@ class OFrames : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XFra
@onerror We return sal_False.
*//*-*****************************************************************************************************/
- virtual sal_Bool SAL_CALL hasElements() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL hasElements() throw( css::uno::RuntimeException, std::exception ) override;
protected: