Fix build bustage.

This commit is contained in:
hyatt%netscape.com 2001-06-04 00:57:43 +00:00
parent 6c393ae2f4
commit 358a2b68ed

View File

@ -788,7 +788,9 @@ static void GetInsertionPoint(nsIPresShell* aShell, nsIFrame* aFrame, nsIFrame*
{
nsCOMPtr<nsIFrameManager> frameManager;
aShell->GetFrameManager(getter_AddRefs(frameManager));
frameManager->GetInsertionPoint(aShell, aFrame, aChild, aResult);
nsCOMPtr<nsIContent> child;
aChild->GetContent(getter_AddRefs(child));
frameManager->GetInsertionPoint(aShell, aFrame, child, aResult);
}
NS_IMETHODIMP