[Libreoffice-commits] core.git: basegfx/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Sat Nov 24 05:29:09 UTC 2018


 basegfx/source/polygon/b2dpolypolygoncutter.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ecb962ed5441d4e48e39fd0746a672b620202176
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Nov 23 22:12:50 2018 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Nov 24 06:28:44 2018 +0100

    Fix typo
    
    Change-Id: I041e0d04dd5a57602fd6139a2a854db243435bed
    Reviewed-on: https://gerrit.libreoffice.org/63917
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins

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));
 


More information about the Libreoffice-commits mailing list