Checking in some debug only code - r: rhp

This commit is contained in:
rhp%netscape.com 1999-11-19 03:49:18 +00:00
Родитель b67dd8b1d2
Коммит 27260bfcaa
1 изменённых файлов: 17 добавлений и 0 удалений

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

@ -1596,5 +1596,22 @@ const char* lookupStr(const char *s)
return s;
}
#ifdef NS_DEBUG
void
DumpProperties(VObject *o)
{
return;
VObjectIterator i;
initPropIterator(&i,o);
while (moreIteration(&i))
{
VObject *each = nextVObject(&i);
// printf("ID = %s Value = [%s]\n", each->id, fakeCString(vObjectUStringZValue(each)));
}
}
#endif
/* end of source file vobject.c */