зеркало из https://github.com/mozilla/gecko-dev.git
Fixing my for scoping.
This commit is contained in:
Родитель
1f6f2c1fc0
Коммит
f9b67b3fe0
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче