Revised factory method argument order (normalized)

This commit is contained in:
kipp%netscape.com 1998-09-01 01:35:19 +00:00
Родитель 845410630a
Коммит 4023d729c3
2 изменённых файлов: 6 добавлений и 4 удалений

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

@ -379,8 +379,9 @@ nsObjectFrame::Paint(nsIPresContext& aPresContext,
}
nsresult
NS_NewObjectFrame(nsIFrame*& aFrameResult, nsIContent* aContent,
nsIFrame* aParentFrame)
NS_NewObjectFrame(nsIContent* aContent,
nsIFrame* aParentFrame,
nsIFrame*& aFrameResult)
{
aFrameResult = new nsObjectFrame(aContent, aParentFrame);
if (nsnull == aFrameResult) {

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

@ -379,8 +379,9 @@ nsObjectFrame::Paint(nsIPresContext& aPresContext,
}
nsresult
NS_NewObjectFrame(nsIFrame*& aFrameResult, nsIContent* aContent,
nsIFrame* aParentFrame)
NS_NewObjectFrame(nsIContent* aContent,
nsIFrame* aParentFrame,
nsIFrame*& aFrameResult)
{
aFrameResult = new nsObjectFrame(aContent, aParentFrame);
if (nsnull == aFrameResult) {