Remove unused variable in wxDCImpl::CalculateEllipticPoints().

Closes #16433.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-08-24 13:35:24 +00:00
parent df13791078
commit 005aa92678

View File

@ -1477,7 +1477,6 @@ void wxDCImpl::CalculateEllipticPoints( wxPointList* points,
wxCoord y = b;
long x2 = 1;
long y2 = y*y;
long y2_old = 0;
long y_old = 0;
// Lists for quadrant 1 to 4
wxPointList pointsarray[4];
@ -1485,7 +1484,6 @@ void wxDCImpl::CalculateEllipticPoints( wxPointList* points,
for( x = 0; x <= a; ++x )
{
x2 = x2+x+x-1;
y2_old = y2;
y_old = y;
bool bNewPoint = false;
while( y2 > c1 - c2 * x2 && y > 0 )