Bug 309462 Error finding parent item in agendaTree r=dmose

This commit is contained in:
jminta%gmail.com 2005-09-22 01:34:34 +00:00
Родитель c6e4a8760f
Коммит 586fa3e1e9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -199,7 +199,7 @@ function getParentIndex(row)
if (this.events[i] instanceof Synthetic)
return i;
i--;
} while (i != 0);
} while (i != -1);
throw "no parent for row " + row + "?";
};