summaryrefslogtreecommitdiff
path: root/vcl/workben/svpclient.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-05-19 08:45:31 +0300
committerTor Lillqvist <tml@collabora.com>2014-05-19 08:45:31 +0300
commitd7034051a94816e4e81bd17ed5eb81ca0c8a97f4 (patch)
treea3e2757fa4fbc0f7864979528c99f25a981b6e63 /vcl/workben/svpclient.cxx
parent9a4a48d213457f93c797493011ac362eb528de6a (diff)
WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
Change-Id: I00aaacadf108f2cc5d57963991e5c99ea4485056
Diffstat (limited to 'vcl/workben/svpclient.cxx')
-rw-r--r--vcl/workben/svpclient.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/workben/svpclient.cxx b/vcl/workben/svpclient.cxx
index 60823d0e4601..c9c52f52553d 100644
--- a/vcl/workben/svpclient.cxx
+++ b/vcl/workben/svpclient.cxx
@@ -84,17 +84,17 @@ class MyWin : public WorkWindow
ImageControl m_aImage;
PushButton m_aQuitButton;
public:
- MyWin( Window* pParent, WinBits nWinStyle );
+ 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();
+ virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
+ virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
+ virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
+ virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
+ virtual void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE;
+ virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
+ virtual void Resize() SAL_OVERRIDE;
- bool Close();
+ virtual bool Close() SAL_OVERRIDE;
void parseList( const OString& rList );
OString processCommand( const OString& rCommand );