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 /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 'svx')
-rw-r--r-- | svx/source/svdraw/svdpage.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx index 536167b04e56..b66ed3433d18 100644 --- a/svx/source/svdraw/svdpage.cxx +++ b/svx/source/svdraw/svdpage.cxx @@ -1447,7 +1447,7 @@ Size SdrPage::GetSize() const return Size(mnWidth,mnHeight); } -sal_Int32 SdrPage::GetWidth() const +tools::Long SdrPage::GetWidth() const { return mnWidth; } @@ -1473,7 +1473,7 @@ Orientation SdrPage::GetOrientation() const return eRet; } -sal_Int32 SdrPage::GetHeight() const +tools::Long SdrPage::GetHeight() const { return mnHeight; } |