Fix bustage. "i" is already declared.

git-svn-id: svn://10.0.0.236/trunk@113670 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu 2002-02-05 03:11:01 +00:00
parent 3ddd33baaa
commit c1d76095eb

View File

@ -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