diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-19 17:33:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-19 17:33:49 +0200 |
commit | 40b72d615874b759d53d07ac3466ae19f3445986 (patch) | |
tree | bbd9384a4edb39d6d5686293936dfc4198e313e0 /svx/workben | |
parent | 44c4ee3b8785ccf8e1bf465dd31e2779f281733b (diff) |
loplugin:saloverride
Change-Id: I2c1033358c546adefa4e280f0b6cb577ee7e3b25
Diffstat (limited to 'svx/workben')
-rw-r--r-- | svx/workben/pixelctl.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/svx/workben/pixelctl.cxx b/svx/workben/pixelctl.cxx index 10fbe5670d56..1ef6da03bf1f 100644 --- a/svx/workben/pixelctl.cxx +++ b/svx/workben/pixelctl.cxx @@ -71,15 +71,15 @@ class MyWin : public WorkWindow public: MyWin( Window* pParent, WinBits nWinStyle ); - void MouseMove( const MouseEvent& rMEvt ); - void MouseButtonDown( const MouseEvent& rMEvt ); - void MouseButtonUp( const MouseEvent& rMEvt ); - void KeyInput( const KeyEvent& rKEvt ); - void KeyUp( const KeyEvent& rKEvt ); - void Paint( const Rectangle& rRect ); - void Resize(); - - bool Close(); + void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; + void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE; + void Paint( const Rectangle& rRect ) SAL_OVERRIDE; + void Resize() SAL_OVERRIDE; + + bool Close() SAL_OVERRIDE; }; void Main() |