diff --git a/lotuswordpro/inc/xfilter/xfcontentcontainer.hxx b/lotuswordpro/inc/xfilter/xfcontentcontainer.hxx index 08a12d9b14ed..f3a843f1481f 100644 --- a/lotuswordpro/inc/xfilter/xfcontentcontainer.hxx +++ b/lotuswordpro/inc/xfilter/xfcontentcontainer.hxx @@ -92,7 +92,7 @@ public: rtl::Reference GetLastContent(); void RemoveLastContent(); /** - * @descr convience function for add text content. + * @descr convenience function for add text content. */ void Add(const OUString& text); 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 );