lotuswordpro/inc/xfilter/xfcontentcontainer.hxx | 2 +- vcl/unx/generic/gdi/gdiimpl.cxx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 89202f2d76a92866ed3f3887d690e4fc45658e22 Author: Andrea Gelmini <[email protected]> Date: Sat Feb 10 01:32:52 2018 +0100 Fix typos Change-Id: Ia01f85e87706b02ffb816b3385765e2729dafa02 Reviewed-on: https://gerrit.libreoffice.org/49585 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Julien Nabet <[email protected]> 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<XFContent> 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 ); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
