Bug 224723 NS_ASSERTION(boxObject, "no box object!"); timer fired after tree was destroyed

r=varga sr=dbaron
This commit is contained in:
timeless%mozdev.org 2003-12-21 04:27:50 +00:00
Родитель 1406b54021
Коммит 01315d0ab1
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -285,6 +285,10 @@ NS_IMETHODIMP nsTreeSelection::GetTree(nsITreeBoxObject * *aTree)
NS_IMETHODIMP nsTreeSelection::SetTree(nsITreeBoxObject * aTree)
{
if (mSelectTimer) {
mSelectTimer->Cancel();
mSelectTimer = nsnull;
}
mTree = aTree; // WEAK
return NS_OK;
}