Final part of fix for 13718 -- implement call through nsHTMLImageLoader to get natural dimensions. r=pnunn.

This commit is contained in:
sfraser%netscape.com 2000-09-08 23:36:29 +00:00
Родитель 75155a5171
Коммит 6b042422d7
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -81,7 +81,12 @@ nsHTMLImageLoader::GetImage()
void
nsHTMLImageLoader::GetNaturalImageSize(PRUint32* naturalWidth, PRUint32* naturalHeight)
{
//
*naturalWidth = 0;
*naturalHeight = 0;
if (mImageLoader) {
mImageLoader->GetNaturalImageSize(naturalWidth, naturalHeight);
}
}
void