gcc warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -95,7 +95,7 @@ wxRegion::wxRegion(size_t n, const wxPoint *points, int WXUNUSED(fillStyle))
|
|||||||
x2 = x1 = points[0].x ;
|
x2 = x1 = points[0].x ;
|
||||||
y2 = y1 = points[0].y ;
|
y2 = y1 = points[0].y ;
|
||||||
::MoveTo(x1,y1);
|
::MoveTo(x1,y1);
|
||||||
for (int i = 1; i < n; i++)
|
for (size_t i = 1; i < n; i++)
|
||||||
{
|
{
|
||||||
x2 = points[i].x ;
|
x2 = points[i].x ;
|
||||||
y2 = points[i].y ;
|
y2 = points[i].y ;
|
||||||
|
Reference in New Issue
Block a user