summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-11-12 09:31:42 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-13 13:38:26 +0100
commitd55e0fbde49ad3b1e678419588dd58df6d9e06c4 (patch)
tree4c448d5a759829f4e7b6e5e594db83dd3a926009 /tools
parent811b77e0f63b91eeb05311c724e3e209bff30f68 (diff)
Revert "remove BigInt::operator tools::Long()"
This reverts commit 1397a1c8e4995b0dd336478e564880fe8ad91d1d. Reason for revert: Some discussion required Change-Id: Id39ee8260790e0722c5bf8338b0b76ca34da83d7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105539 Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/poly.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx
index 06f1c1787b2b..c25783764f27 100644
--- a/tools/source/generic/poly.cxx
+++ b/tools/source/generic/poly.cxx
@@ -774,7 +774,7 @@ Point ImplEdgePointFilter::EdgeSection( const Point& rPoint, int nEdge ) const
else
ady += mn/2;
ady /= mn;
- nNewX = static_cast<sal_Int32>(ady) + lx;
+ nNewX = static_cast<tools::Long>(ady) + lx;
}
}
else
@@ -800,7 +800,7 @@ Point ImplEdgePointFilter::EdgeSection( const Point& rPoint, int nEdge ) const
else
adx += md/2;
adx /= md;
- nNewY = static_cast<sal_Int32>(adx) + ly;
+ nNewY = static_cast<tools::Long>(adx) + ly;
}
}