I got the nsRect and gfxRect APIs confused. b=374715 r=vlad

This commit is contained in:
dbaron%dbaron.org 2007-03-21 19:04:38 +00:00
Родитель 4992ff46d8
Коммит 17731c0e94
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -360,8 +360,8 @@ nsThebesImage::Draw(nsIRenderingContext &aContext,
gfxRect destRect(aDestRect);
if (!GetIsImageComplete()) {
srcRect.Intersect(gfxRect(mDecoded.x, mDecoded.y,
mDecoded.width, mDecoded.height));
srcRect = srcRect.Intersect(gfxRect(mDecoded.x, mDecoded.y,
mDecoded.width, mDecoded.height));
// This happens when mDecoded.width or height is zero. bug 368427.
if (NS_UNLIKELY(srcRect.size.width == 0 || srcRect.size.height == 0))