Made ListTag more usable for all frame types, not just derivations of nsFrame

This commit is contained in:
kipp%netscape.com 1998-12-12 19:20:10 +00:00
Родитель 398462eb7a
Коммит a475e77dd2
2 изменённых файлов: 12 добавлений и 4 удалений

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

@ -274,10 +274,14 @@ public:
#endif
void ListTag(FILE* out) const {
ListTag(out, this);
}
static void ListTag(FILE* out, const nsIFrame* aFrame) {
nsAutoString tmp;
GetFrameName(tmp);
aFrame->GetFrameName(tmp);
fputs(tmp, out);
fprintf(out, "@%p", this);
fprintf(out, "@%p", aFrame);
}
static void IndentBy(FILE* out, PRInt32 aIndent) {

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

@ -274,10 +274,14 @@ public:
#endif
void ListTag(FILE* out) const {
ListTag(out, this);
}
static void ListTag(FILE* out, const nsIFrame* aFrame) {
nsAutoString tmp;
GetFrameName(tmp);
aFrame->GetFrameName(tmp);
fputs(tmp, out);
fprintf(out, "@%p", this);
fprintf(out, "@%p", aFrame);
}
static void IndentBy(FILE* out, PRInt32 aIndent) {