Kaydet (Commit) 40b72d61 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:saloverride

Change-Id: I2c1033358c546adefa4e280f0b6cb577ee7e3b25
üst 44c4ee3b
...@@ -71,15 +71,15 @@ class MyWin : public WorkWindow ...@@ -71,15 +71,15 @@ class MyWin : public WorkWindow
public: public:
MyWin( Window* pParent, WinBits nWinStyle ); MyWin( Window* pParent, WinBits nWinStyle );
void MouseMove( const MouseEvent& rMEvt ); void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
void MouseButtonDown( const MouseEvent& rMEvt ); void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
void MouseButtonUp( const MouseEvent& rMEvt ); void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
void KeyInput( const KeyEvent& rKEvt ); void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
void KeyUp( const KeyEvent& rKEvt ); void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE;
void Paint( const Rectangle& rRect ); void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
void Resize(); void Resize() SAL_OVERRIDE;
bool Close(); bool Close() SAL_OVERRIDE;
}; };
void Main() void Main()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment