summaryrefslogtreecommitdiff
path: root/vcl/win
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-09-13 12:49:41 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-09-13 14:47:12 +0200
commit5be9451b9be4f71e18aeaadf9e9553d560a1710d (patch)
tree62b9f698a82b89c179b4de456d0e1bc7508860d0 /vcl/win
parent4653db1caea48b55d91bf8b702a18ab24ae9ba9f (diff)
Fix typos
Change-Id: I1ee620200a285936159fed57d0cbbf5320e7d3ec Reviewed-on: https://gerrit.libreoffice.org/60429 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/win')
-rw-r--r--vcl/win/gdi/gdiimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/gdi/gdiimpl.cxx b/vcl/win/gdi/gdiimpl.cxx
index 4dcd86a4f405..0134c9ab63e5 100644
--- a/vcl/win/gdi/gdiimpl.cxx
+++ b/vcl/win/gdi/gdiimpl.cxx
@@ -2025,7 +2025,7 @@ bool WinSalGraphicsImpl::drawPolyPolygon(
// and fill polygons. Checked that in a first try, used
// GraphicsPath::AddPath from Gdiplus combined with below used
// StartFigure/CloseFigure, worked well (thus the line-draw version
- // may create non-cloded partial Polygon data).
+ // may create non-closed partial Polygon data).
//
// But in current reality it gets not used due to e.g.
// SdrPathPrimitive2D::create2DDecomposition creating transformed
@@ -2040,7 +2040,7 @@ bool WinSalGraphicsImpl::drawPolyPolygon(
//
// A 2nd problem is that the NoLineJoin mode (basegfx::B2DLineJoin::NONE
// && rLineWidths > 0.0) creates polygon fill infos that are not reusable
- // for the fill case (see ::drawPolyLine bnelow) - thus we would need a
+ // for the fill case (see ::drawPolyLine below) - thus we would need a
// bool and/or two system-dependent paths buffered - doable, but complicated.
//
// All in all: Make B2DPolyPolygon a SystemDependentDataProvider and buffer