Fix bustage. "i" is already declared.

This commit is contained in:
bzbarsky%mit.edu 2002-02-05 03:11:01 +00:00
Родитель 96d9e2d527
Коммит bfeb54db4b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -467,7 +467,7 @@ nsContainerBox::CheckBoxOrder(nsBoxLayoutState& aState)
// turn the array back into linked list, with first and last cached
mFirstChild = boxes[0];
mLastChild = boxes[mChildCount-1];
for (PRInt32 i = 0; i < mChildCount; ++i) {
for (i = 0; i < mChildCount; ++i) {
if (i <= mChildCount-2)
boxes[i]->SetNextBox(boxes[i+1]);
else