Removed some annoying printf messages

This commit is contained in:
troy%netscape.com 1998-08-04 21:44:42 +00:00
parent 691f369418
commit faeb2e1fc8

View File

@ -411,7 +411,6 @@ ImageFrame::GetDesiredSize(nsIPresContext* aPresContext,
nsReflowMetrics& aDesiredSize)
{
if (mSizeFrozen) {
printf("image frozen, returning des size %d\n", mRect.width);
aDesiredSize.width = mRect.width;
aDesiredSize.height = mRect.height;
}
@ -441,7 +440,6 @@ ImageFrame::GetDesiredSize(nsIPresContext* aPresContext,
}
}
mImageLoader.GetDesiredSize(aPresContext, aReflowState, aDesiredSize);
printf("image loader returning des size %d\n", aDesiredSize.width);
}
}