Bug 409591. Thunderbird: newsgroup/feed messages blank in virtual buffer. Correct the previous checkin for this bug which caused bug 414574. r=surkov, sr=bz, a=blocking1.9

This commit is contained in:
aaronleventhal%moonset.net 2008-01-30 05:42:44 +00:00
Родитель a1b89f01d0
Коммит ae1dfdb04e
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -697,7 +697,8 @@ nsresult nsDocAccessible::RemoveEventListeners()
if (rootAccessible) {
nsRefPtr<nsCaretAccessible> caretAccessible = rootAccessible->GetCaretAccessible();
if (caretAccessible) {
nsCOMPtr<nsIPresShell> presShell(GetPresShell());
// Don't use GetPresShell() which can call Shutdown() if it sees dead pres shell
nsCOMPtr<nsIPresShell> presShell(do_QueryReferent(mWeakShell));
caretAccessible->RemoveDocSelectionListener(presShell);
}
}