Changed Reflow() member function to take a reference to a nsIPresContext

instead of a pointer
This commit is contained in:
troy
1998-07-15 02:53:09 +00:00
parent acd768ed2f
commit 26b49b4476
68 changed files with 272 additions and 282 deletions

View File

@@ -127,7 +127,7 @@ NS_IMETHODIMP nsHTMLReflowCommand::Dispatch(nsIPresContext& aPresContext,
nsReflowState reflowState(root, *this, aMaxSize);
nsReflowStatus status;
root->Reflow(&aPresContext, aDesiredSize, reflowState, status);
root->Reflow(aPresContext, aDesiredSize, reflowState, status);
}
return NS_OK;