summaryrefslogtreecommitdiff
path: root/sw/inc/accmap.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /sw/inc/accmap.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'sw/inc/accmap.hxx')
-rw-r--r--sw/inc/accmap.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/inc/accmap.hxx b/sw/inc/accmap.hxx
index 08e8a3756f7a..edfed85948ac 100644
--- a/sw/inc/accmap.hxx
+++ b/sw/inc/accmap.hxx
@@ -263,12 +263,12 @@ public:
// IAccessibleViewForwarder
- virtual bool IsValid() const;
- virtual Rectangle GetVisibleArea() const;
- virtual Point LogicToPixel (const Point& rPoint) const;
- virtual Size LogicToPixel (const Size& rSize) const;
- virtual Point PixelToLogic (const Point& rPoint) const;
- virtual Size PixelToLogic (const Size& rSize) const;
+ virtual bool IsValid() const SAL_OVERRIDE;
+ virtual Rectangle GetVisibleArea() const SAL_OVERRIDE;
+ virtual Point LogicToPixel (const Point& rPoint) const SAL_OVERRIDE;
+ virtual Size LogicToPixel (const Size& rSize) const SAL_OVERRIDE;
+ virtual Point PixelToLogic (const Point& rPoint) const SAL_OVERRIDE;
+ virtual Size PixelToLogic (const Size& rSize) const SAL_OVERRIDE;
// IAccessibleParent
virtual bool ReplaceChild (
@@ -276,13 +276,13 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& _rxShape,
const long _nIndex,
const ::accessibility::AccessibleShapeTreeInfo& _rShapeTreeInfo
- ) throw (::com::sun::star::uno::RuntimeException);
+ ) throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
virtual ::accessibility::AccessibleControlShape* GetAccControlShapeFromModel
(::com::sun::star::beans::XPropertySet* pSet)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > GetAccessibleCaption (
const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > & xShape)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
// additional Core/Pixel conversions for internal use; also works
// for preview
@@ -312,7 +312,7 @@ private:
void GetMapMode( const Point& _rPoint,
MapMode& _orMapMode ) const;
public:
- virtual bool IsDocumentSelAll();
+ virtual bool IsDocumentSelAll() SAL_OVERRIDE;
::com::sun::star::uno::WeakReference < ::com::sun::star::accessibility::XAccessible >
GetCursorContext() const { return mxCursorContext; }