From bac9e93e771345b5879285a481bbb18e43bd4753 Mon Sep 17 00:00:00 2001 From: "troy%netscape.com" Date: Tue, 1 Feb 2000 04:30:04 +0000 Subject: [PATCH] b=25834 r=karnaze@netscape.com Changed to ignore the reflow status when reflowing an unknown frame (i.e., a frame that isn't a row group) git-svn-id: svn://10.0.0.236/trunk@59360 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/html/table/src/nsTableFrame.cpp | 3 ++- mozilla/layout/tables/nsTableFrame.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mozilla/layout/html/table/src/nsTableFrame.cpp b/mozilla/layout/html/table/src/nsTableFrame.cpp index 44e1d4a1066..c3048070c46 100644 --- a/mozilla/layout/html/table/src/nsTableFrame.cpp +++ b/mozilla/layout/html/table/src/nsTableFrame.cpp @@ -2983,8 +2983,9 @@ NS_METHOD nsTableFrame::ReflowMappedChildren(nsIPresContext* aPresContext, aReflowState.reflowState, kidFrame, nsSize(0,0), eReflowReason_Resize); nsHTMLReflowMetrics unusedDesiredSize(nsnull); + nsReflowStatus status; ReflowChild(kidFrame, aPresContext, unusedDesiredSize, kidReflowState, - 0, 0, 0, aStatus); + 0, 0, 0, status); kidFrame->DidReflow(aPresContext, NS_FRAME_REFLOW_FINISHED); } diff --git a/mozilla/layout/tables/nsTableFrame.cpp b/mozilla/layout/tables/nsTableFrame.cpp index 44e1d4a1066..c3048070c46 100644 --- a/mozilla/layout/tables/nsTableFrame.cpp +++ b/mozilla/layout/tables/nsTableFrame.cpp @@ -2983,8 +2983,9 @@ NS_METHOD nsTableFrame::ReflowMappedChildren(nsIPresContext* aPresContext, aReflowState.reflowState, kidFrame, nsSize(0,0), eReflowReason_Resize); nsHTMLReflowMetrics unusedDesiredSize(nsnull); + nsReflowStatus status; ReflowChild(kidFrame, aPresContext, unusedDesiredSize, kidReflowState, - 0, 0, 0, aStatus); + 0, 0, 0, status); kidFrame->DidReflow(aPresContext, NS_FRAME_REFLOW_FINISHED); }