summaryrefslogtreecommitdiffstats
path: root/include/vcl/timer.hxx
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2015-03-04 14:13:52 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2015-03-06 12:27:11 +0000
commit49439d4a67b06227e56a2855c856e3482323a28a (patch)
treefb77b3a5027643f43e36e593447a06e5ab8aaae7 /include/vcl/timer.hxx
parentTimer: Faster Word Count (diff)
downloadcore-49439d4a67b06227e56a2855c856e3482323a28a.tar.gz
core-49439d4a67b06227e56a2855c856e3482323a28a.zip
Timer: patch for commit 06d7314
Change-Id: I762062a4782438ec5bbcb53da9a42f44db65c40d
Diffstat (limited to 'include/vcl/timer.hxx')
-rw-r--r--include/vcl/timer.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index 01fd36c82a16..d2db1d4efd9c 100644
--- a/include/vcl/timer.hxx
+++ b/include/vcl/timer.hxx
@@ -44,7 +44,7 @@ public:
void SetTimeoutHdl( const Link& rLink ) { maTimeoutHdl = rLink; }
const Link& GetTimeoutHdl() const { return maTimeoutHdl; }
virtual void Invoke() SAL_OVERRIDE;
- virtual void Timeout() { Invoke(); }
+ void Timeout() { Invoke(); }
Timer& operator=( const Timer& rTimer );
void Start() SAL_OVERRIDE;
};