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

Tobias Madl tobias.madl.dev at gmail.com
Fri Mar 6 06:46:15 PST 2015


 include/vcl/timer.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit e7c2b4b981b9b43c31fa442d5596b7a765dbe699
Author: Tobias Madl <tobias.madl.dev at gmail.com>
Date:   Fri Mar 6 15:45:03 2015 +0100

    Timer: added virtual before definition
    
    Change-Id: Ief4da1f1241fc4175f5ad132fd103e6d29470b58

diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index 004e78c..e2fd4a7 100644
--- a/include/vcl/timer.hxx
+++ b/include/vcl/timer.hxx
@@ -30,9 +30,9 @@ protected:
     sal_uLong       mnTimeout;
     bool            mbAuto;
 
-    void SetDeletionFlags() SAL_OVERRIDE;
-    bool ReadyForSchedule( bool bTimer ) SAL_OVERRIDE;
-    sal_uLong UpdateMinPeriod( sal_uLong nMinPeriod, sal_uLong nTime ) SAL_OVERRIDE;
+    virtual void SetDeletionFlags() SAL_OVERRIDE;
+    virtual bool ReadyForSchedule( bool bTimer ) SAL_OVERRIDE;
+    virtual sal_uLong UpdateMinPeriod( sal_uLong nMinPeriod, sal_uLong nTime ) SAL_OVERRIDE;
 
 public:
     Timer();
@@ -47,7 +47,7 @@ public:
     virtual void    Invoke() SAL_OVERRIDE;
     void            Timeout() { Invoke(); }
     Timer&          operator=( const Timer& rTimer );
-    void            Start() SAL_OVERRIDE;
+    virtual void            Start() SAL_OVERRIDE;
     static void     ImplStartTimer( ImplSVData* pSVData, sal_uLong nMS );
 };
 


More information about the Libreoffice-commits mailing list