Fix some debugging code. b=380825 r+sr=bzbarsky

This commit is contained in:
dbaron@dbaron.org 2007-05-16 14:17:45 -07:00
Родитель 0ce54cddf4
Коммит c97e43cd4e
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1328,7 +1328,9 @@ void nsCSSDeclaration::List(FILE* out, PRInt32 aIndent) const
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
fputs("{ ", out);
fputs("nsCSSDeclaration::List not implemented", out);
nsAutoString s;
ToString(s);
fputs(NS_ConvertUTF16toUTF8(s).get(), out);
fputs("}", out);
}
#endif