From aa43bcc774710923c26e046d187953175b308478 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 11 Oct 2006 23:47:41 +0000 Subject: [PATCH] use "StrokeLineSegements" for the second overload of StrokeLines git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_graphics.i | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wxPython/src/_graphics.i b/wxPython/src/_graphics.i index 9a761ed4ee..683495f692 100644 --- a/wxPython/src/_graphics.i +++ b/wxPython/src/_graphics.i @@ -428,9 +428,8 @@ public: // // stroke disconnected lines from begin to end points // virtual void StrokeLines( size_t n, const wxPoint2D *beginPoints, const wxPoint2D *endPoints); - // is there a better name for this? %extend { - void StrokeDisconnectedLines(PyObject* beginPoints, PyObject* endPoints) + void StrokeLineSegements(PyObject* beginPoints, PyObject* endPoints) { size_t c1, c2, count; wxPoint2D* beginP = wxPoint2D_LIST_helper(beginPoints, &c1); -- 2.50.0