From 91b914882948c6acbb2dd6442083b8c6ccd9cf17 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 9 Apr 2015 14:27:30 +0200 Subject: Change tools::Time::GetSystemTicks to sal_uInt64 ...as follow-up clean-up after 71fefe1dc2bcda3a4cc18d71e1acaf161cc059f2 "Change 'blink times' to be of type sal_uInt64 and thus consistent with Timer::Get/SetTimeout since 9c7016b5b530ca212b1275f44f9e2fc0527109ee 'Scheduler: Changed uLong to uInt32/uInt64.'" Transitively meant to change quite a number of further time-related places from sal_uLong/sal_uIntPtr to consistently use sal_uInt64. Change-Id: I38eb493943906356138bf58eb098d2f54a3dee34 Reviewed-on: https://gerrit.libreoffice.org/15214 Reviewed-by: Stephan Bergmann Tested-by: Stephan Bergmann --- include/vcl/settings.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/vcl/settings.hxx') diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx index 1b41ed2a7a2b..1775e095874a 100644 --- a/include/vcl/settings.hxx +++ b/include/vcl/settings.hxx @@ -80,8 +80,8 @@ public: void SetOptions( sal_uLong nOptions ); sal_uLong GetOptions() const; - void SetDoubleClickTime( sal_uLong nDoubleClkTime ); - sal_uLong GetDoubleClickTime() const; + void SetDoubleClickTime( sal_uInt64 nDoubleClkTime ); + sal_uInt64 GetDoubleClickTime() const; void SetDoubleClickWidth( long nDoubleClkWidth ); long GetDoubleClickWidth() const; -- cgit