summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-11-23 22:12:50 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-11-24 06:28:44 +0100
commitecb962ed5441d4e48e39fd0746a672b620202176 (patch)
treeef603d3381789620cd6ac7811d37031c76c8eda0 /basegfx
parent70970f8b72eddc66693ec28d26c2dc764009d3e3 (diff)
Fix typo
Change-Id: I041e0d04dd5a57602fd6139a2a854db243435bed Reviewed-on: https://gerrit.libreoffice.org/63917 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index d80c670fe04f..1388a10f360e 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -142,7 +142,7 @@ namespace basegfx
// with border.
if(rVecA.cross(rVecB) > 0.0)
{
- // b is left turn seen from a, test if Test is left of both and so inside (left is seeen as inside)
+ // b is left turn seen from a, test if Test is left of both and so inside (left is seen as inside)
const bool bBoolA(fTools::moreOrEqual(rVecA.cross(rTest), 0.0));
const bool bBoolB(fTools::lessOrEqual(rVecB.cross(rTest), 0.0));
@@ -150,7 +150,7 @@ namespace basegfx
}
else
{
- // b is right turn seen from a, test if Test is right of both and so outside (left is seeen as inside)
+ // b is right turn seen from a, test if Test is right of both and so outside (left is seen as inside)
const bool bBoolA(fTools::lessOrEqual(rVecA.cross(rTest), 0.0));
const bool bBoolB(fTools::moreOrEqual(rVecB.cross(rTest), 0.0));