diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-07-02 18:20:59 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2015-07-04 10:23:17 +0000 |
commit | ffa8892c5a929ac121fc7b1020d8f6b5b3cf45be (patch) | |
tree | 4633fab92c7f808a932025491e97c5b62509b7f9 /basegfx/source | |
parent | 3dfdd18707019c49723ad98e74f5202a3ae436f7 (diff) |
Fix typos
Change-Id: I75b4ad61785bf0ba1cb07735d938c0977356b8cc
Reviewed-on: https://gerrit.libreoffice.org/16705
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'basegfx/source')
-rw-r--r-- | basegfx/source/polygon/b2dpolygon.cxx | 2 | ||||
-rw-r--r-- | basegfx/source/polygon/b2dpolygontools.cxx | 2 | ||||
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygoncutter.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx index fb7a98ff4b6e..46b8b452e90f 100644 --- a/basegfx/source/polygon/b2dpolygon.cxx +++ b/basegfx/source/polygon/b2dpolygon.cxx @@ -1358,7 +1358,7 @@ namespace basegfx } else { - // no bezier, reset control poins at rTarget + // no bezier, reset control points at rTarget rTarget.setControlPointA(rTarget.getStartPoint()); rTarget.setControlPointB(rTarget.getEndPoint()); } diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx index 13844613ff6b..8b31f7a0b15f 100644 --- a/basegfx/source/polygon/b2dpolygontools.cxx +++ b/basegfx/source/polygon/b2dpolygontools.cxx @@ -1073,7 +1073,7 @@ namespace basegfx if(fTools::more(fCut1, fZero) && fTools::less(fCut1, fOne) && (!fTools::equalZero(rEdge2Delta.getX()) || !fTools::equalZero(rEdge2Delta.getY()))) { - // take the mopre precise calculation of the two possible + // take the more precise calculation of the two possible if(fabs(rEdge2Delta.getX()) > fabs(rEdge2Delta.getY())) { fCut2 = (rEdge1Start.getX() + fCut1 diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx index 106e217a2308..07c45ad447cc 100644 --- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx +++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx @@ -494,7 +494,7 @@ namespace basegfx const sal_uInt32 nPointCount(aGeometry.count()); - // If it's not a pezier polygon, at least four points are needed to create + // If it's not a bezier polygon, at least four points are needed to create // a self-intersection. If it's a bezier polygon, the minimum point number // is two, since with a single point You get a curve, but no self-intersection if(nPointCount > 3 || (nPointCount > 1 && mbIsCurve)) |