diff options
Diffstat (limited to 'vcl/inc/svdata.hxx')
-rw-r--r-- | vcl/inc/svdata.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx index f9de696650ad..dcbbc00ea9bc 100644 --- a/vcl/inc/svdata.hxx +++ b/vcl/inc/svdata.hxx @@ -324,8 +324,8 @@ struct ImplSchedulerContext ImplSchedulerData* mpFirstSchedulerData = nullptr; ///< list of all active tasks ImplSchedulerData* mpLastSchedulerData = nullptr; ///< last item of the mpFirstSchedulerData list SalTimer* mpSalTimer = nullptr; ///< interface to sal event loop / system timer - sal_uInt64 mnTimerPeriod = 0; ///< current timer period - sal_uInt64 mnLastProcessTime = 0; ///< last time a task was processed + sal_uInt64 mnTimerStart = 0; ///< start time of the timer + sal_uInt64 mnTimerPeriod = SAL_MAX_UINT64; ///< current timer period bool mbNeedsReschedule = false; ///< we need to reschedule }; |