WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
Change-Id: I00aaacadf108f2cc5d57963991e5c99ea4485056
This commit is contained in:
@@ -86,15 +86,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();
|
||||
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 );
|
||||
|
@@ -71,13 +71,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();
|
||||
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;
|
||||
};
|
||||
|
||||
void Main()
|
||||
|
@@ -65,13 +65,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();
|
||||
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;
|
||||
};
|
||||
|
||||
void Main()
|
||||
|
Reference in New Issue
Block a user