Bug 233463, patch 5 - Remove nsFrameList(nsIFrame*) ctor. r=bzbarsky

This commit is contained in:
Mats Palmgren
2009-09-18 13:09:36 +02:00
parent 927c863e0b
commit f85d73c25c
19 changed files with 69 additions and 83 deletions

View File

@@ -353,7 +353,7 @@ nsMathMLmoFrame::ProcessOperatorData()
// find the position of our outermost embellished container w.r.t
// its siblings (frames are singly-linked together).
nsFrameList frameList(parentAncestor->GetFirstChild(nsnull));
const nsFrameList& frameList(parentAncestor->GetChildList(nsnull));
nsIFrame* nextSibling = embellishAncestor->GetNextSibling();
nsIFrame* prevSibling = frameList.GetPrevSiblingFor(embellishAncestor);