summaryrefslogtreecommitdiff
path: root/include/svx/svdcrtv.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 /include/svx/svdcrtv.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 'include/svx/svdcrtv.hxx')
-rw-r--r--include/svx/svdcrtv.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/svx/svdcrtv.hxx b/include/svx/svdcrtv.hxx
index 728f0321a6cc..f2679a47f804 100644
--- a/include/svx/svdcrtv.hxx
+++ b/include/svx/svdcrtv.hxx
@@ -75,14 +75,14 @@ protected:
virtual ~SdrCreateView();
public:
- virtual bool IsAction() const;
- virtual void MovAction(const Point& rPnt);
- virtual void EndAction();
- virtual void BckAction();
- virtual void BrkAction();
- virtual void TakeActionRect(Rectangle& rRect) const;
-
- virtual sal_Bool MouseMove(const MouseEvent& rMEvt, Window* pWin);
+ virtual bool IsAction() const SAL_OVERRIDE;
+ virtual void MovAction(const Point& rPnt) SAL_OVERRIDE;
+ virtual void EndAction() SAL_OVERRIDE;
+ virtual void BckAction() SAL_OVERRIDE;
+ virtual void BrkAction() SAL_OVERRIDE;
+ virtual void TakeActionRect(Rectangle& rRect) const SAL_OVERRIDE;
+
+ virtual sal_Bool MouseMove(const MouseEvent& rMEvt, Window* pWin) SAL_OVERRIDE;
void SetMeasureLayer(const OUString& rName) { aMeasureLayer=rName; }
const OUString& GetMeasureLayer() const { return aMeasureLayer; }