From ecb962ed5441d4e48e39fd0746a672b620202176 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Fri, 23 Nov 2018 22:12:50 +0100 Subject: Fix typo Change-Id: I041e0d04dd5a57602fd6139a2a854db243435bed Reviewed-on: https://gerrit.libreoffice.org/63917 Reviewed-by: Julien Nabet Tested-by: Jenkins --- basegfx/source/polygon/b2dpolypolygoncutter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basegfx') 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)); -- cgit