diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-16 16:59:45 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-20 10:45:58 +0200 |
commit | 47ee8098a90a35626dcace7422a9a624c8469389 (patch) | |
tree | 15bd87d280036aec701328ee8c770e3c4c9de138 /vcl/inc | |
parent | 9466ea1af09c275f423b0d5c1ad929984ed998b3 (diff) |
WIN guarantee direct timeout handling
The code did acccount processing of an invaild timeout system
message as a valid timeout event.
Change-Id: I3c31f8b9cec592631b4089411163dadecffde816
Reviewed-on: https://gerrit.libreoffice.org/43529
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/win/saltimer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/win/saltimer.h b/vcl/inc/win/saltimer.h index d762b51b6716..b7d1a1e0d0f1 100644 --- a/vcl/inc/win/saltimer.h +++ b/vcl/inc/win/saltimer.h @@ -42,9 +42,9 @@ class WinSalTimer final : public SalTimer, protected VersionedEvent void ImplStart( sal_uIntPtr nMS ); void ImplStop(); - void ImplHandleTimerEvent( WPARAM aWPARAM ); + bool ImplHandleTimerEvent( WPARAM aWPARAM ); void ImplHandleElapsedTimer(); - void ImplHandle_WM_TIMER( WPARAM aWPARAM ); + bool ImplHandle_WM_TIMER( WPARAM aWPARAM ); public: WinSalTimer(); |