summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-09-21 10:20:45 +0100
committerMichael Stahl <mstahl@redhat.com>2016-09-21 12:55:27 +0000
commit43a9d36ba9867feae8b52ffbb154c6bc2ac61163 (patch)
treee3577d8fdbc1d1a1d7db55e7ac4071bd4d2bff08 /cui
parent81cab3d5de9e05bde456f96356379a3b6033bc7f (diff)
Resolves: tdf#100795 SAL_MIN_INT32 32bit overflows on finding min limit
for control points, so halve it to the practical limit Change-Id: I1285631bebebf86e257a2fdd804c0c81dcefac96 (cherry picked from commit 25e4708c1f49986f3f082beb2e940aa2d7fb4d81) Reviewed-on: https://gerrit.libreoffice.org/29132 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/transfrm.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/tabpages/transfrm.cxx b/cui/source/tabpages/transfrm.cxx
index cc7c3bfe3606..34cbadde4907 100644
--- a/cui/source/tabpages/transfrm.cxx
+++ b/cui/source/tabpages/transfrm.cxx
@@ -639,14 +639,14 @@ void SvxSlantTabPage::Reset(const SfxItemSet* rAttrs)
m_aControlGroups[i]->Enable();
css::awt::Point aPosition;
- aPosition.X = SAL_MAX_INT32;
- aPosition.Y = SAL_MAX_INT32;
+ aPosition.X = SAL_MAX_INT32/2;
+ aPosition.Y = SAL_MAX_INT32/2;
aShape.SetHandleControllerPosition(i, aPosition);
Point aMaxPosition;
aShape.GetHandlePosition(i, aMaxPosition);
- aPosition.X = SAL_MIN_INT32;
- aPosition.Y = SAL_MIN_INT32;
+ aPosition.X = SAL_MIN_INT32/2;
+ aPosition.Y = SAL_MIN_INT32/2;
aShape.SetHandleControllerPosition(i, aPosition);
Point aMinPosition;
aShape.GetHandlePosition(i, aMinPosition);