]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct wxGraphicsContext::StrokeLines(n, points) documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 31 Mar 2011 09:28:30 +0000 (09:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 31 Mar 2011 09:28:30 +0000 (09:28 +0000)
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

index b692552c59b49b34c578711bc8221034139d2d37..86ee53fd01c1e0df7dac783a6e1ec9f62f986998 100644 (file)
@@ -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);