summaryrefslogtreecommitdiff
path: root/vcl/source/app/timer.cxx
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2014-10-30 20:07:59 +0100
committerTobias Madl <tobias.madl.dev@gmail.com>2014-12-09 12:35:01 +0000
commit78999e0f841b4f3583a49333efbcd0e4b492265b (patch)
tree3187f6b2d19c6da3161cd62dc7d39a4f6ccc18eb /vcl/source/app/timer.cxx
parentedf7c2b176f98f708a0ef0543602ea6417ad7509 (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
Diffstat (limited to 'vcl/source/app/timer.cxx')
-rw-r--r--vcl/source/app/timer.cxx2
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 );
}