Make sure to get the children of the <CHILDREN> node, not the original node.

This commit is contained in:
waterson%netscape.com 1998-12-10 08:30:59 +00:00
Родитель a0bcab8d8f
Коммит c5baaa9bfe
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -113,7 +113,7 @@ void nsHTDataModel::AddNodesToArray(nsIContent* pContent, PRUint32 indentLevel)
for (PRInt32 i = 0; i < numChildren; i++)
{
nsIContent* child = nsnull;
pContent->ChildAt(i, child);
pChildrenNode->ChildAt(i, child);
if (child)
{
AddNodesToArray(child, indentLevel);