diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2016-09-08 06:55:30 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-07-13 12:10:21 +0200 |
commit | d348035a60361a1b9ba9eb7b67013204a24a6633 (patch) | |
tree | 85e7e4ff2dd926ef9d2907b4f4900815bdbb96c5 /vcl/inc/saltimer.hxx | |
parent | 1782893282a4543e946e6b2c8de863b10fab0c85 (diff) |
Drop special idle handling
Idles are just instant timers, which should most time have a low
priority, By dropping most special idle handling we'll just
schedule by priority.
This also reverts SalYieldResult back to a bool, which just
indicates if any event was processed.
Change-Id: Ia0b91b06dffb77af066f01838d8f9483523bf67d
Diffstat (limited to 'vcl/inc/saltimer.hxx')
-rw-r--r-- | vcl/inc/saltimer.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/saltimer.hxx b/vcl/inc/saltimer.hxx index e9f28169bf35..e0179dd5fd27 100644 --- a/vcl/inc/saltimer.hxx +++ b/vcl/inc/saltimer.hxx @@ -48,10 +48,10 @@ public: m_pProc = pProc; } - void CallCallback( bool idle ) + void CallCallback() { if( m_pProc ) - m_pProc( idle ); + m_pProc(); } }; |