Iterate through children of the <COLUMNS> node, not the original node.

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

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

@ -48,6 +48,8 @@ nsHTTreeDataModel::nsHTTreeDataModel() : nsTreeDataModel(), nsHTDataModel()
// Hard-coded values.
mVisibleColumnCount = 3;
mSingleControlStripItem = new nsHTControlStripItem();
}
//--------------------------------------------------------------------
@ -98,7 +100,7 @@ void nsHTTreeDataModel::SetContentRoot(nsIContent* pContent)
for (PRInt32 i = 0; i < numChildren; i++)
{
nsIContent* child = nsnull;
pContent->ChildAt(i, child);
pColumnNode->ChildAt(i, child);
if (child)
{
// We have a column to add to our array.
@ -329,4 +331,4 @@ nsHierarchicalDataItem* nsHTTreeDataModel::CreateDataItemWithContentNode(nsICont
{
nsHTTreeItem* pItem = new nsHTTreeItem(pContent, this);
return pItem;
}
}