diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-25 14:38:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-26 07:35:04 +0100 |
commit | 589ce33041df5ca1c3f6d914d5d33d0fffb69f8f (patch) | |
tree | f597b3b70fe109d805baeb71fedc27b9e4780a75 /vcl/inc/saltimer.hxx | |
parent | b792e4ee22d7b625a214f6eceb1c223f35b9a606 (diff) |
sal_uIntPtr->sal_uInt64 in SalTimer::Start
because the call site specifies millis in a sal_uInt64 variable
Change-Id: I5cf42407b9e7f3cdef976d8f442609723fd67af9
Reviewed-on: https://gerrit.libreoffice.org/68342
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/saltimer.hxx')
-rw-r--r-- | vcl/inc/saltimer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/saltimer.hxx b/vcl/inc/saltimer.hxx index 726d71eba335..8c849a8c9c2e 100644 --- a/vcl/inc/saltimer.hxx +++ b/vcl/inc/saltimer.hxx @@ -40,7 +40,7 @@ public: virtual ~SalTimer() COVERITY_NOEXCEPT_FALSE; // AutoRepeat and Restart - virtual void Start( sal_uLong nMS ) = 0; + virtual void Start( sal_uInt64 nMS ) = 0; virtual void Stop() = 0; // Callbacks (indepen in \sv\source\app\timer.cxx) |