diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 18:12:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 18:12:18 +0100 |
commit | 567ef6d5782cdb729b49005caf6005610ce03e22 (patch) | |
tree | 7e3be1da41382e555d9091914ef7e064852a4fd4 /starmath/inc/ElementsDockingWindow.hxx | |
parent | c36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (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 'starmath/inc/ElementsDockingWindow.hxx')
-rw-r--r-- | starmath/inc/ElementsDockingWindow.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/starmath/inc/ElementsDockingWindow.hxx b/starmath/inc/ElementsDockingWindow.hxx index ccd9d7c89937..c4ab012b3d23 100644 --- a/starmath/inc/ElementsDockingWindow.hxx +++ b/starmath/inc/ElementsDockingWindow.hxx @@ -59,7 +59,7 @@ class SmElementSeparator : public SmElement public: SmElementSeparator(); - virtual bool isSeparator() + virtual bool isSeparator() SAL_OVERRIDE { return true; } @@ -80,9 +80,9 @@ class SmElementsControl : public Control Link aSelectHdlLink; - virtual void Paint(const Rectangle&); - virtual void MouseButtonDown(const MouseEvent& rMEvt); - virtual void MouseMove( const MouseEvent& rMEvt ); + virtual void Paint(const Rectangle&) SAL_OVERRIDE; + virtual void MouseButtonDown(const MouseEvent& rMEvt) SAL_OVERRIDE; + virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE; typedef boost::shared_ptr<SmElement> SmElementPointer; typedef std::vector< SmElementPointer > SmElementList; @@ -122,7 +122,7 @@ class SmElementsDockingWindow : public SfxDockingWindow SmElementsControl maElementsControl; ListBox maElementListBox; - virtual void Resize(); + virtual void Resize() SAL_OVERRIDE; SmViewShell* GetView(); DECL_LINK(SelectClickHdl, SmElement*); @@ -135,8 +135,8 @@ public: Window* pParent ); ~SmElementsDockingWindow(); - virtual void EndDocking( const Rectangle& rReactangle, bool bFloatMode); - virtual void ToggleFloatingMode(); + virtual void EndDocking( const Rectangle& rReactangle, bool bFloatMode) SAL_OVERRIDE; + virtual void ToggleFloatingMode() SAL_OVERRIDE; }; class SmElementsDockingWindowWrapper : public SfxChildWindow |