Bug 709519 - Remove unused 1-argument nsRenderingContext::DrawEllipse; r=joe a=ehsan

This commit is contained in:
Ms2ger 2011-12-13 09:49:31 +11:00
parent eee2d72367
commit 136fb248e2
2 changed files with 0 additions and 7 deletions

View File

@ -383,12 +383,6 @@ nsRenderingContext::InvertRect(const nsRect& aRect)
mThebes->SetOperator(lastOp);
}
void
nsRenderingContext::DrawEllipse(const nsRect& aRect)
{
DrawEllipse(aRect.x, aRect.y, aRect.width, aRect.height);
}
void
nsRenderingContext::DrawEllipse(nscoord aX, nscoord aY,
nscoord aWidth, nscoord aHeight)

View File

@ -103,7 +103,6 @@ public:
void DrawRect(const nsRect& aRect);
void DrawRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight);
void DrawEllipse(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight);
void DrawEllipse(const nsRect& aRect);
void FillRect(const nsRect& aRect);
void FillRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight);