Getting rid of debug spewage left in by one of the last couple of checkins

git-svn-id: svn://10.0.0.236/trunk@73045 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
vidur%netscape.com
2000-06-23 05:51:07 +00:00
parent 107a69004e
commit 91fa351b69

View File

@@ -1440,7 +1440,9 @@ nsGfxTextControlFrame2::GetMinSize(nsBoxLayoutState& aState, nsSize& aSize)
return NS_OK;
#else
nsBox::GetMinSize(aState, aSize);
#ifdef DEBUG_rods
printf("nsGfxTextControlFrame2::GetMinSize %d,%d\n", aSize.width, aSize.height);
#endif
return nsBox::GetMinSize(aState, aSize);
#endif
}
@@ -1449,7 +1451,9 @@ NS_IMETHODIMP
nsGfxTextControlFrame2::GetMaxSize(nsBoxLayoutState& aState, nsSize& aSize)
{
nsBox::GetMaxSize(aState, aSize);
#ifdef DEBUG_rods
printf("nsGfxTextControlFrame2::GetMaxSize %d,%d\n", aSize.width, aSize.height);
#endif
return nsBox::GetMaxSize(aState, aSize);
}