Added ListTag() member function

This commit is contained in:
troy%netscape.com 1998-11-13 02:20:31 +00:00
Родитель c5a24baf25
Коммит 413669e5d5
2 изменённых файлов: 28 добавлений и 0 удалений

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

@ -60,6 +60,8 @@ public:
return NS_OK;
}
NS_IMETHOD ListTag(FILE* out) const;
protected:
virtual PRIntn GetSkipSides() const;
};
@ -233,3 +235,15 @@ RootFrame::HandleEvent(nsIPresContext& aPresContext,
return NS_OK;
}
// Output the frame's tag
NS_IMETHODIMP
RootFrame::ListTag(FILE* out) const
{
if (nsnull == mContent) {
fprintf(out, "*Root(-1)@%p", this);
} else {
return nsFrame::ListTag(out);
}
}

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

@ -60,6 +60,8 @@ public:
return NS_OK;
}
NS_IMETHOD ListTag(FILE* out) const;
protected:
virtual PRIntn GetSkipSides() const;
};
@ -233,3 +235,15 @@ RootFrame::HandleEvent(nsIPresContext& aPresContext,
return NS_OK;
}
// Output the frame's tag
NS_IMETHODIMP
RootFrame::ListTag(FILE* out) const
{
if (nsnull == mContent) {
fprintf(out, "*Root(-1)@%p", this);
} else {
return nsFrame::ListTag(out);
}
}