diff options
author | buldi <dobrakowskirafal@gmail.com> | 2023-07-06 00:10:57 +0200 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2024-01-04 12:38:38 +0100 |
commit | f5e5e86144152e5f98cbb985939a883936fe86d7 (patch) | |
tree | 8d8af825c262e1d577fee05401be4a09cb07506f /sd/inc | |
parent | be1480264062eff93d8307ae14be1c4e8b9ea0ed (diff) |
tdf#114441 sal_uLong to better integer type
At first it seemd that sal_uInt16 may be sufficient for storing possible
values. But as elsewhere unsigned 32 bit variables are used for such
purpose, sal_uInt32 is used which allows having more space for bigger values.
Change-Id: Ic2834ffc0fcabad91175aba3753e832dc1807fbe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151006
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/stlsheet.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/inc/stlsheet.hxx b/sd/inc/stlsheet.hxx index fe1079ffd616..93044bdfd2f2 100644 --- a/sd/inc/stlsheet.hxx +++ b/sd/inc/stlsheet.hxx @@ -62,7 +62,7 @@ public: virtual bool HasFollowSupport() const override; virtual bool HasParentSupport() const override; virtual bool HasClearParentSupport() const override; - virtual void SetHelpId( const OUString& r, sal_uLong nId ) override; + virtual void SetHelpId( const OUString& r, sal_uInt32 nId ) override; bool IsEditable(); |