This commit is contained in:
hyatt%netscape.com 1999-06-25 10:03:37 +00:00
Родитель 1f6f2c1fc0
Коммит f9b67b3fe0
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -247,7 +247,9 @@ nsTreeRowGroupFrame::FindPreviousRowContent(PRInt32& aDelta, nsIContent* aUpward
PRInt32 childContentCount;
nsCOMPtr<nsIContent> grandChild;
childContent->ChildCount(childContentCount);
for (PRInt32 j = childContentCount-1; j >= 0; j--) {
PRInt32 j;
for (j = childContentCount-1; j >= 0; j--) {
childContent->ChildAt(j, *getter_AddRefs(grandChild));
nsCOMPtr<nsIAtom> grandChildTag;