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

git-svn-id: svn://10.0.0.236/trunk@20223 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-02-10 06:13:38 +00:00
parent 339afcce8a
commit bd78450e96
55 changed files with 548 additions and 546 deletions

View File

@@ -148,7 +148,7 @@ nsFieldSetFrame::SetInitialChildList(nsIPresContext& aPresContext,
nsresult result = frame->QueryInterface(kLegendFrameCID, (void**)&legendFrame);
if ((NS_OK == result) && legendFrame) {
nsIFrame* nextFrame;
frame->GetNextSibling(nextFrame);
frame->GetNextSibling(&nextFrame);
if (lastFrame) {
lastFrame->SetNextSibling(nextFrame);
} else {
@@ -161,7 +161,7 @@ nsFieldSetFrame::SetInitialChildList(nsIPresContext& aPresContext,
frame = nextFrame;
} else {
frame->SetParent(mFrames.FirstChild());
frame->GetNextSibling(frame);
frame->GetNextSibling(&frame);
}
lastFrame = frame;
}