summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 15:45:03 +0100
committerTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 15:45:50 +0100
commite7c2b4b981b9b43c31fa442d5596b7a765dbe699 (patch)
treee79b724ad11e2ab701b4bf3871187d3e57a1d3e0
parent6f4dc6af39ecf2f90155205ad097601a8b2f602c (diff)
Timer: added virtual before definition
Change-Id: Ief4da1f1241fc4175f5ad132fd103e6d29470b58
-rw-r--r--include/vcl/timer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index 004e78c9a7e4..e2fd4a7c74de 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 );
};