From 10128e0d6e5f53a8b70894b9cde9501e03398aaf Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" Date: Fri, 23 May 2003 21:50:05 +0000 Subject: [PATCH] Bug 203396 unused variables in nsRegion::SubRect r=mkaply sr=roc+moz --- gfx/src/nsRegion.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/gfx/src/nsRegion.cpp b/gfx/src/nsRegion.cpp index d9d370ca209f..de9db2608021 100644 --- a/gfx/src/nsRegion.cpp +++ b/gfx/src/nsRegion.cpp @@ -985,14 +985,11 @@ void nsRegion::SubRect (const nsRectFast& aRect, nsRegion& aResult, nsRegion& aC // Rectangle B. Subtract this from rectangle A const nscoord bx = aRect.x; const nscoord bxm = aRect.XMost (); - const nscoord bw = aRect.width; const nscoord by = aRect.y; const nscoord bym = aRect.YMost (); - const nscoord bh = aRect.height; // Rectangle I. Area where rectangles A and B intersect const nscoord ix = TmpRect.x; const nscoord ixm = TmpRect.XMost (); - const nscoord iw = TmpRect.width; const nscoord iy = TmpRect.y; const nscoord iym = TmpRect.YMost (); const nscoord ih = TmpRect.height;