diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-01-29 01:27:17 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-07-13 12:10:20 +0200 |
commit | d72aad218c9737fb19d1a835b03c13b7107a96c0 (patch) | |
tree | c77c9ad4ee2a576b6bd5474d12259608a1d0196e /vcl/win/app/saltimer.cxx | |
parent | c0710abfebd320903a3edb23d4b1441ea351b0be (diff) |
Refactor Scheduler global data
Move all Scheduler members of ImplSVData into ImplSchedulerContext
and make ImplSchedulerContext a member of ImplSVData.
Change-Id: I186bebdfb5701543595848968235b5a56b6598e9
Diffstat (limited to 'vcl/win/app/saltimer.cxx')
-rw-r--r-- | vcl/win/app/saltimer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/app/saltimer.cxx b/vcl/win/app/saltimer.cxx index de213deaee7b..3c1ff53c90c1 100644 --- a/vcl/win/app/saltimer.cxx +++ b/vcl/win/app/saltimer.cxx @@ -148,10 +148,10 @@ void EmitTimerCallback() // Try to acquire the mutex. If we don't get the mutex then we // try this a short time later again. - if (pSVData->mpSalTimer && ImplSalYieldMutexTryToAcquire()) + if (pSVData->maSchedCtx.mpSalTimer && ImplSalYieldMutexTryToAcquire()) { bool const idle = true; // TODO - pSVData->mpSalTimer->CallCallback( idle ); + pSVData->maSchedCtx.mpSalTimer->CallCallback( idle ); ImplSalYieldMutexRelease(); // Run the timer again if it was started before, and also |