182099 - lock up on stylesheets tab double-clicking the twisty

r=varga, sr=bzbarsky, a=sspitzer
This commit is contained in:
caillon%returnzero.com 2003-04-26 21:38:53 +00:00
Родитель e331c62807
Коммит 9f6e7048fb
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -238,7 +238,7 @@ function(aRow)
if (this.mLevels[i] < baseLevel)
return i;
}
return 0;
return -1;
}
StyleSheetsView.prototype.hasNextSibling =

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

@ -116,7 +116,8 @@ interface nsITreeView : nsISupports
/**
* Methods used by the tree to draw vertical lines in the tree.
* GetParentIndex is used to obtain the index of a parent row.
* getParentIndex is used to obtain the index of a parent row.
* If there is no parent row, getParentIndex returns -1.
*/
long getParentIndex(in long rowIndex);