diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-10-30 20:07:59 +0100 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-12-09 12:35:01 +0000 |
commit | 78999e0f841b4f3583a49333efbcd0e4b492265b (patch) | |
tree | 3187f6b2d19c6da3161cd62dc7d39a4f6ccc18eb | |
parent | edf7c2b176f98f708a0ef0543602ea6417ad7509 (diff) |
Basic Idle handler implementation
An idle handler will ultimately be a zero time timeout with
prioritisation layered on top of that.
Change-Id: I3f0802d5001172fc7b8409274bc5a3632e5dad34
-rw-r--r-- | vcl/source/app/timer.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/source/app/timer.cxx b/vcl/source/app/timer.cxx index 529c8b53d881..212c521e2286 100644 --- a/vcl/source/app/timer.cxx +++ b/vcl/source/app/timer.cxx @@ -385,14 +385,12 @@ AutoTimer& AutoTimer::operator=( const AutoTimer& rTimer ) Idle::Idle() : Timer() { - mbIdle = true; SetPriority(VCL_IDLE_PRIORITY_LOWEST); } Idle::Idle( IdlePriority ePriority ) : Timer() { - mbIdle = true; SetPriority( ePriority ); } |