diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2022-02-21 16:42:24 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2022-02-21 19:35:33 +0100 |
commit | db345bee733fee8c7157c246979bed2c65799507 (patch) | |
tree | a85e84444b859664ac78151b576917db38b23f4e /include/svx | |
parent | 8c2607ae3ce143586e623532b8ae5288277ec3ac (diff) |
use 64bit for window sizes (tdf#147458)
Change-Id: Iaa240aeae8bacbff6bccd9bf0721a02414b6f47d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130288
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/svdpage.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index 83c0592f060e..2ba7017a01a3 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -411,8 +411,8 @@ private: SdrModel& mrSdrModelFromSdrPage; private: - sal_Int32 mnWidth; // page size - sal_Int32 mnHeight; // page size + tools::Long mnWidth; // page size + tools::Long mnHeight; // page size sal_Int32 mnBorderLeft; // left page margin sal_Int32 mnBorderUpper; // top page margin sal_Int32 mnBorderRight; // right page margin @@ -477,8 +477,8 @@ public: Size GetSize() const; virtual void SetOrientation(Orientation eOri); virtual Orientation GetOrientation() const; - sal_Int32 GetWidth() const; - sal_Int32 GetHeight() const; + tools::Long GetWidth() const; + tools::Long GetHeight() const; virtual void SetBorder(sal_Int32 nLft, sal_Int32 nUpp, sal_Int32 nRgt, sal_Int32 Lwr); virtual void SetLeftBorder(sal_Int32 nBorder); virtual void SetUpperBorder(sal_Int32 nBorder); |