From 564d13cb0e00ecac4f6f973b1feb494229e133c8 Mon Sep 17 00:00:00 2001 From: "cbarrett%mozilla.com" Date: Fri, 17 Aug 2007 23:58:19 +0000 Subject: [PATCH] Bug 370353 followup: Check in white space changes. Patch by Daniel Holbert . r=bernd sr=dbaron a1.9=dbaron. --- layout/tables/nsTableFrame.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/layout/tables/nsTableFrame.cpp b/layout/tables/nsTableFrame.cpp index c5b5f621461..37042847444 100644 --- a/layout/tables/nsTableFrame.cpp +++ b/layout/tables/nsTableFrame.cpp @@ -3063,14 +3063,14 @@ nsTableFrame::ReflowColGroups(nsIRenderingContext *aRenderingContext) for (nsIFrame* kidFrame = mColGroups.FirstChild(); kidFrame; kidFrame = kidFrame->GetNextSibling()) { if (NS_SUBTREE_DIRTY(kidFrame)) { - // The column groups don't care about dimensions or reflow states. - nsHTMLReflowState kidReflowState(presContext, kidFrame, + // The column groups don't care about dimensions or reflow states. + nsHTMLReflowState kidReflowState(presContext, kidFrame, aRenderingContext, nsSize(0,0)); - nsReflowStatus cgStatus; - ReflowChild(kidFrame, presContext, kidMet, kidReflowState, 0, 0, 0, - cgStatus); - FinishReflowChild(kidFrame, presContext, nsnull, kidMet, 0, 0, 0); - } + nsReflowStatus cgStatus; + ReflowChild(kidFrame, presContext, kidMet, kidReflowState, 0, 0, 0, + cgStatus); + FinishReflowChild(kidFrame, presContext, nsnull, kidMet, 0, 0, 0); + } } SetHaveReflowedColGroups(PR_TRUE); }