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: ...@@ -83,7 +83,7 @@ public:
static void ImplDeInitScheduler(); static void ImplDeInitScheduler();
/// Process all pending idle tasks ahead of time in priority order. /// Process all pending idle tasks ahead of time in priority order.
static void CallbackTaskScheduling(); static void CallbackTaskScheduling( bool ignore );
static void ProcessTaskScheduling( bool bTimer ); static void ProcessTaskScheduling( bool bTimer );
}; };
......
...@@ -44,7 +44,7 @@ public: ...@@ -44,7 +44,7 @@ public:
void SetTimeoutHdl( const Link& rLink ) { maTimeoutHdl = rLink; } void SetTimeoutHdl( const Link& rLink ) { maTimeoutHdl = rLink; }
const Link& GetTimeoutHdl() const { return maTimeoutHdl; } const Link& GetTimeoutHdl() const { return maTimeoutHdl; }
virtual void Invoke() SAL_OVERRIDE; virtual void Invoke() SAL_OVERRIDE;
virtual void Timeout() { Invoke(); } void Timeout() { Invoke(); }
Timer& operator=( const Timer& rTimer ); Timer& operator=( const Timer& rTimer );
void Start() SAL_OVERRIDE; void Start() SAL_OVERRIDE;
}; };
......
...@@ -90,8 +90,9 @@ void Scheduler::ImplDeInitScheduler() ...@@ -90,8 +90,9 @@ void Scheduler::ImplDeInitScheduler()
} }
} }
void Scheduler::CallbackTaskScheduling() void Scheduler::CallbackTaskScheduling(bool ignore)
{ {
(void)ignore;
Scheduler::ProcessTaskScheduling( true ); 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