Fixed (hopefully) linux build bustage by re-writing the expression w/ a temp variable

This commit is contained in:
tague%netscape.com 1999-06-29 22:46:20 +00:00
Родитель fadb6fd4e2
Коммит 126754690a
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -498,9 +498,10 @@ void
nsTreeRowGroupFrame::SetScrollbarFrame(nsIFrame* aFrame)
{
mScrollbar = aFrame;
nsFrameList frameList(mScrollbar);
// Place it in its own list.
mScrollbarList.AppendFrames(this, nsFrameList(mScrollbar));
mScrollbarList.AppendFrames(this,frameList);
nsCOMPtr<nsIContent> scrollbarContent;
aFrame->GetContent(getter_AddRefs(scrollbarContent));
@ -1008,4 +1009,4 @@ void nsTreeRowGroupFrame::CreateScrollbar(nsIPresContext& aPresContext)
&aResult, PR_FALSE, PR_TRUE);
}
}
}