diff options
author | sahil <gautamsahil1947@gmail.com> | 2023-08-13 14:17:20 +0530 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2023-09-05 22:51:55 +0200 |
commit | b4dd91f3a10610924e736445e17506b49b619a70 (patch) | |
tree | d80e105087a608ec35f6113dceb231647e288184 /include/vcl | |
parent | 300dc54b0424add2dbab5443dcbd46ba12f418fc (diff) |
tdf#114441 - Convert use of sal_uLong to better integer types
Updated scrolling related variables to double from sal_uLong
Change-Id: Ibf4bb3d55b074b5d2e369e4bc708b87bdfa302b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155644
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/commandevent.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/commandevent.hxx b/include/vcl/commandevent.hxx index fc6ba290793f..9491137acea8 100644 --- a/include/vcl/commandevent.hxx +++ b/include/vcl/commandevent.hxx @@ -139,7 +139,7 @@ enum class CommandWheelMode }; // Magic value used in mnLines field in CommandWheelData -#define COMMAND_WHEEL_PAGESCROLL (sal_uLong(0xFFFFFFFF)) +#define COMMAND_WHEEL_PAGESCROLL (double(0xFFFFFFFF)) class VCL_DLLPUBLIC CommandWheelData { |