diff options
author | Jennifer Liebel <jliebel94@gmail.com> | 2014-11-13 13:10:55 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-12-09 12:35:03 +0000 |
commit | f0a6ec25d06e7be309000858dc2ace7b621fcf92 (patch) | |
tree | 9c55b0c5d6a4d5f6d6a9574a07910d765c39e533 /vcl | |
parent | 9f3e3923d799022381b9fad9d9155c7d65745ae3 (diff) |
changed timers to idle
Change-Id: I05ccb8bd73070462edcc911956859aa7967b5901
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/timer.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/source/app/timer.cxx b/vcl/source/app/timer.cxx index 675c751a3414..529c8b53d881 100644 --- a/vcl/source/app/timer.cxx +++ b/vcl/source/app/timer.cxx @@ -385,12 +385,14 @@ 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 ); } @@ -434,6 +436,7 @@ void Idle::DoIdle() maTimeoutHdl.Call( this ); } + Idle::~Idle() { } |