From 12194090d2cae131b375414a630c3f0c831922b5 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Sun, 6 Jun 2010 11:34:33 +0000 Subject: [PATCH] more readable argument names for wxDC::DrawArc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/dc.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/interface/wx/dc.h b/interface/wx/dc.h index 22f898e805..e637dfb449 100644 --- a/interface/wx/dc.h +++ b/interface/wx/dc.h @@ -222,19 +222,20 @@ public: /** Draws an arc of a circle, centred on (@a xc, @a yc), with starting - point (@a x1, @a y1) and ending at (@a x2, @a y2). The current pen is - used for the outline and the current brush for filling the shape. + point (@a xStart, @a yStart) and ending at (@a xEnd, @a yEnd). + The current pen is used for the outline and the current brush for + filling the shape. The arc is drawn in a counter-clockwise direction from the start point to the end point. */ - void DrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, + void DrawArc(wxCoord xStart, wxCoord yStart, wxCoord xEnd, wxCoord yEnd, wxCoord xc, wxCoord yc); /** @overload */ - void DrawArc(const wxPoint& pt1, const wxPoint& pt2, const wxPoint& centre); + void DrawArc(const wxPoint& ptStart, const wxPoint& ptEnd, const wxPoint& centre); /** Draw a bitmap on the device context at the specified point. If -- 2.47.2