summaryrefslogtreecommitdiff
path: root/svx/inc/dragmt3d.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 /svx/inc/dragmt3d.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 'svx/inc/dragmt3d.hxx')
-rw-r--r--svx/inc/dragmt3d.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svx/inc/dragmt3d.hxx b/svx/inc/dragmt3d.hxx
index 0b2b6ef95a8b..e224f6ee5100 100644
--- a/svx/inc/dragmt3d.hxx
+++ b/svx/inc/dragmt3d.hxx
@@ -79,16 +79,16 @@ public:
E3dDragConstraint eConstr = E3DDRAG_CONSTR_XYZ,
sal_Bool bFull = sal_False);
- virtual void TakeSdrDragComment(OUString& rStr) const;
- virtual bool BeginSdrDrag();
- virtual void MoveSdrDrag(const Point& rPnt);
- virtual void CancelSdrDrag();
- virtual bool EndSdrDrag(bool bCopy);
+ virtual void TakeSdrDragComment(OUString& rStr) const SAL_OVERRIDE;
+ virtual bool BeginSdrDrag() SAL_OVERRIDE;
+ virtual void MoveSdrDrag(const Point& rPnt) SAL_OVERRIDE;
+ virtual void CancelSdrDrag() SAL_OVERRIDE;
+ virtual bool EndSdrDrag(bool bCopy) SAL_OVERRIDE;
E3dView& Get3DView() { return (E3dView&)getSdrDragView(); }
// for migration from XOR to overlay
- virtual void CreateOverlayGeometry(::sdr::overlay::OverlayManager& rOverlayManager);
+ virtual void CreateOverlayGeometry(::sdr::overlay::OverlayManager& rOverlayManager) SAL_OVERRIDE;
};
@@ -110,8 +110,8 @@ public:
E3dDragConstraint eConstr = E3DDRAG_CONSTR_XYZ,
sal_Bool bFull = sal_False);
- virtual void MoveSdrDrag(const Point& rPnt);
- virtual Pointer GetSdrDragPointer() const;
+ virtual void MoveSdrDrag(const Point& rPnt) SAL_OVERRIDE;
+ virtual Pointer GetSdrDragPointer() const SAL_OVERRIDE;
};
@@ -135,8 +135,8 @@ public:
E3dDragConstraint eConstr = E3DDRAG_CONSTR_XYZ,
sal_Bool bFull = sal_False);
- virtual void MoveSdrDrag(const Point& rPnt);
- virtual Pointer GetSdrDragPointer() const;
+ virtual void MoveSdrDrag(const Point& rPnt) SAL_OVERRIDE;
+ virtual Pointer GetSdrDragPointer() const SAL_OVERRIDE;
};