diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 17:42:11 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 05:53:57 +0000 |
commit | 9e4c87be31732ed076a059128d2e20451697d225 (patch) | |
tree | bfab650dd6d21ac6bbcf0e592ec6bc2e7655acbe /basegfx | |
parent | ef1bafb588eb20a5d35df14e79a1a948885c721a (diff) |
Fix typos
Change-Id: Ie0e941d48457d758525353d6c5cf858652f86fd3
Reviewed-on: https://gerrit.libreoffice.org/18938
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolygontools.cxx | 4 | ||||
-rw-r--r-- | basegfx/source/polygon/b2dpolygontriangulator.cxx | 2 | ||||
-rw-r--r-- | basegfx/source/raster/rasterconvert3d.cxx | 2 | ||||
-rw-r--r-- | basegfx/test/basegfx2d.cxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx index 6efeb7802f46..e031143caebf 100644 --- a/basegfx/source/polygon/b2dpolygontools.cxx +++ b/basegfx/source/polygon/b2dpolygontools.cxx @@ -1069,7 +1069,7 @@ namespace basegfx const double fZero(0.0); const double fOne(1.0); - // inside parameter range edge1 AND fCut2 is calcable + // inside parameter range edge1 AND fCut2 is calculable if(fTools::more(fCut1, fZero) && fTools::less(fCut1, fOne) && (!fTools::equalZero(rEdge2Delta.getX()) || !fTools::equalZero(rEdge2Delta.getY()))) { @@ -1672,7 +1672,7 @@ namespace basegfx // close aRetval.setClosed( true ); - // remove double created points if there are extreme radii envolved + // remove double created points if there are extreme radii involved if(fOne == fRadiusX || fOne == fRadiusY) { aRetval.removeDoublePoints(); diff --git a/basegfx/source/polygon/b2dpolygontriangulator.cxx b/basegfx/source/polygon/b2dpolygontriangulator.cxx index 27ebf64955d2..f27ad9bc7af9 100644 --- a/basegfx/source/polygon/b2dpolygontriangulator.cxx +++ b/basegfx/source/polygon/b2dpolygontriangulator.cxx @@ -325,7 +325,7 @@ namespace basegfx if(bNoPointInTriangle) { - // look for end point in triange + // look for end point in triangle pTestEdge = pEdgeB->getNext(); while(bNoPointInTriangle && pTestEdge) diff --git a/basegfx/source/raster/rasterconvert3d.cxx b/basegfx/source/raster/rasterconvert3d.cxx index 946a343d64c4..bbce06fb971e 100644 --- a/basegfx/source/raster/rasterconvert3d.cxx +++ b/basegfx/source/raster/rasterconvert3d.cxx @@ -94,7 +94,7 @@ namespace basegfx if(!nStep || aCurrentEntry->decrementRasterConversionLineEntry3D(nStep)) { - // add when exactly on current line or when incremet to it did not + // add when exactly on current line or when increment to it did not // completely consume it if(nStep) { diff --git a/basegfx/test/basegfx2d.cxx b/basegfx/test/basegfx2d.cxx index 96d76bf1929b..5ed74f324735 100644 --- a/basegfx/test/basegfx2d.cxx +++ b/basegfx/test/basegfx2d.cxx @@ -162,7 +162,7 @@ public: // The import/export of aPath1 does not reproduce aExport again. This is // correct since aPath1 contains a segment with non-used control points // which gets exported now correctly as 'l' and also a point (#4, index 3) - // with C2 continuity which produces a 's' staement now. + // with C2 continuity which produces a 's' statement now. // The old SVGexport identified nun-used ControlVectors erraneously as bezier segments // because the 2nd vector at the start point was used, even when added |