diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-09-25 17:45:16 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-09-25 20:58:38 +0200 |
commit | 3cf9e1156d96b911632e0246271a49b9b9d819c6 (patch) | |
tree | 039a9e08950cfdd8ce645b42248298edecab3f97 /vcl | |
parent | cce464488d7ba1ce10dad40d8fc0c5ae74ad73d5 (diff) |
use SAL_OVERRIDE for WinSalTimer
... and no, we do not "overload" virtual methods.
Change-Id: Iff7c46326974995994e966873ff804092bc53540
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/win/saltimer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/inc/win/saltimer.h b/vcl/inc/win/saltimer.h index 93d98d6c8f18..adc0fea69716 100644 --- a/vcl/inc/win/saltimer.h +++ b/vcl/inc/win/saltimer.h @@ -28,9 +28,8 @@ public: WinSalTimer() {} virtual ~WinSalTimer(); - // overload all pure virtual methods - void Start( sal_uIntPtr nMS ); - void Stop(); + virtual void Start(sal_uIntPtr nMS) SAL_OVERRIDE; + virtual void Stop() SAL_OVERRIDE; }; #endif |