Changed GetNextSibling() to use a pointer argument instead of a reference

This commit is contained in:
troy@netscape.com
1999-02-10 06:13:38 +00:00
parent 655e2cab93
commit 87805c7a92
55 changed files with 548 additions and 546 deletions

View File

@@ -553,7 +553,7 @@ nsHTMLButtonControlFrame::SetInitialChildList(nsIPresContext& aPresContext,
NS_RELEASE(styleContext);
// Set the parent for each of the child frames
for (nsIFrame* frame = aChildList; nsnull != frame; frame->GetNextSibling(frame)) {
for (nsIFrame* frame = aChildList; nsnull != frame; frame->GetNextSibling(&frame)) {
frame->SetParent(mFrames.FirstChild());
}