From 25941fc53b82708a467314a99e1ec7c5ada22d8f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 31 Mar 2011 09:28:30 +0000 Subject: [PATCH] Correct wxGraphicsContext::StrokeLines(n, points) documentation. This method draws a single polyline. Closes #13099. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67353 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/graphics.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/interface/wx/graphics.h b/interface/wx/graphics.h index b692552c59..86ee53fd01 100644 --- a/interface/wx/graphics.h +++ b/interface/wx/graphics.h @@ -620,8 +620,10 @@ public: virtual void StrokeLines(size_t n, const wxPoint2DDouble* beginPoints, const wxPoint2DDouble* endPoints); /** - Stroke disconnected lines from begin to end points, fastest method - available for this purpose. + Stroke lines connecting all the points. + + Unlike the other overload of this function, this method draws a single + polyline and not a number of disconnected lines. */ virtual void StrokeLines(size_t n, const wxPoint2DDouble* points); -- 2.45.2