followup kinda-typo fix to bug 443370, use correct index to fix error when doing async autocomplete updates, r=Neil over IRC, NPOTB for FF

This commit is contained in:
Robert Kaiser 2008-08-16 01:49:14 +02:00
parent 46ea0dc509
commit 61fa4b82ce

View File

@ -1325,7 +1325,7 @@
count -= this.mCounts[oldIndex];
this.mCounts[oldIndex] += count;
while (++oldIndex < this.mCounts.length)
row -= this.mCounts[i];
row -= this.mCounts[oldIndex];
}
this.mRowCount += count;