[Libreoffice-commits] core.git: vcl/workben

Tor Lillqvist tml at collabora.com
Sat May 17 14:38:04 PDT 2014


 vcl/workben/svdem.cxx |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 980dabdbc636d4a639b7227caf7c82fdc81b77c4
Author: Tor Lillqvist <tml at collabora.com>
Date:   Sat May 17 21:22:11 2014 +0300

    WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
    
    Change-Id: Id20db2d9dada07fa5090de1fa74f2b2acb684b68

diff --git a/vcl/workben/svdem.cxx b/vcl/workben/svdem.cxx
index 1e6f681..9eec167 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()


More information about the Libreoffice-commits mailing list