Kaydet (Commit) 49439d4a authored tarafından Tobias Madl's avatar Tobias Madl

Timer: patch for commit 06d73142

Change-Id: I762062a4782438ec5bbcb53da9a42f44db65c40d
üst ff52f4e4
......@@ -83,7 +83,7 @@ public:
static void ImplDeInitScheduler();
/// Process all pending idle tasks ahead of time in priority order.
static void CallbackTaskScheduling();
static void CallbackTaskScheduling( bool ignore );
static void ProcessTaskScheduling( bool bTimer );
};
......
......@@ -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;
};
......
......@@ -90,8 +90,9 @@ void Scheduler::ImplDeInitScheduler()
}
}
void Scheduler::CallbackTaskScheduling()
void Scheduler::CallbackTaskScheduling(bool ignore)
{
(void)ignore;
Scheduler::ProcessTaskScheduling( true );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment