Fix js strict warning about redeclaration of variable. sr=ben

This commit is contained in:
blakeross%telocity.com 2001-10-01 02:50:52 +00:00
Родитель 60096be1fb
Коммит b4d8387acc
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -89,8 +89,9 @@
this._ensureColumnOrder();
var cols = [];
var col;
if (aColBefore.ordinal < aColMove.ordinal) {
var col = aColBefore;
col = aColBefore;
while (col) {
if (col.localName == "outlinercol")
cols.push(col);
@ -104,7 +105,7 @@
for (i = 0; i < cols.length; ++i)
cols[i].ordinal += 2;
} else {
var col = aColMove.boxObject.nextSibling;
col = aColMove.boxObject.nextSibling;
while (col) {
if (col.localName == "outlinercol")
cols.push(col);