From 91fa351b69ca682a41ff89d106eaf9905f169663 Mon Sep 17 00:00:00 2001 From: "vidur%netscape.com" Date: Fri, 23 Jun 2000 05:51:07 +0000 Subject: [PATCH] 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 --- mozilla/layout/html/forms/src/nsGfxTextControlFrame2.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mozilla/layout/html/forms/src/nsGfxTextControlFrame2.cpp b/mozilla/layout/html/forms/src/nsGfxTextControlFrame2.cpp index 71abaf46205..a462a07e36e 100644 --- a/mozilla/layout/html/forms/src/nsGfxTextControlFrame2.cpp +++ b/mozilla/layout/html/forms/src/nsGfxTextControlFrame2.cpp @@ -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); }