summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-02-10 01:32:52 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-02-12 15:38:59 +0100
commit89202f2d76a92866ed3f3887d690e4fc45658e22 (patch)
tree24e5cfbaa49ffd2a8e8ca3c19c68bb536f7316c9 /vcl
parent90a46122dc0ce401919914cb79f11081d6cc6b24 (diff)
Fix typos
Change-Id: Ia01f85e87706b02ffb816b3385765e2729dafa02 Reviewed-on: https://gerrit.libreoffice.org/49585 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/generic/gdi/gdiimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/generic/gdi/gdiimpl.cxx b/vcl/unx/generic/gdi/gdiimpl.cxx
index 342edf526e57..823d4ca9018d 100644
--- a/vcl/unx/generic/gdi/gdiimpl.cxx
+++ b/vcl/unx/generic/gdi/gdiimpl.cxx
@@ -1589,7 +1589,7 @@ bool X11SalGraphicsImpl::drawPolyLine(
const SalColor aKeepBrushColor = mnBrushColor;
mnBrushColor = mnPenColor;
- // #i11575#desc5#b adjust B2D tesselation result to raster positions
+ // #i11575#desc5#b adjust B2D tessellation result to raster positions
basegfx::B2DPolygon aPolygon = rPolygon;
const double fHalfWidth = 0.5 * rLineWidth.getX();
@@ -1601,12 +1601,12 @@ bool X11SalGraphicsImpl::drawPolyLine(
bool bDrawnOk = true;
if( bIsHairline )
{
- // hairlines can benefit from a simplified tesselation
+ // hairlines can benefit from a simplified tessellation
// e.g. for hairlines the linejoin style can be ignored
basegfx::B2DTrapezoidVector aB2DTrapVector;
basegfx::utils::createLineTrapezoidFromB2DPolygon( aB2DTrapVector, aPolygon, rLineWidth.getX() );
- // draw tesselation result
+ // draw tessellation result
const int nTrapCount = aB2DTrapVector.size();
if( nTrapCount > 0 )
bDrawnOk = drawFilledTrapezoids( &aB2DTrapVector[0], nTrapCount, fTransparency );