diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-05-17 21:22:11 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-05-18 00:36:48 +0300 |
commit | 980dabdbc636d4a639b7227caf7c82fdc81b77c4 (patch) | |
tree | 58eb7cb752280a94386b474b54a92cd0d36eb514 /vcl | |
parent | 745a094a37e029afcf34ad1cf82b14f80062163f (diff) |
WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
Change-Id: Id20db2d9dada07fa5090de1fa74f2b2acb684b68
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/workben/svdem.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/workben/svdem.cxx b/vcl/workben/svdem.cxx index 1e6f681c43b9..9eec1674698b 100644 --- a/vcl/workben/svdem.cxx +++ b/vcl/workben/svdem.cxx @@ -67,13 +67,13 @@ 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(); + 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; }; void Main() |