Fix bustage on Solaris caused by Bug 178324

This commit is contained in:
Ginn Chen 2009-06-11 14:40:41 +08:00
Родитель 5346a316ae
Коммит 30346b4f3d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1048,7 +1048,7 @@ nsFocusManager::SetFocusInner(nsIContent* aNewContent, PRInt32 aFlags,
if (!isElementInFocusedWindow)
commonAncestor = GetCommonAncestor(newWindow, mFocusedWindow);
if (!Blur(currentIsSameOrAncestor ? mFocusedWindow : nsnull,
if (!Blur(currentIsSameOrAncestor ? mFocusedWindow.get() : nsnull,
commonAncestor, !isElementInFocusedWindow))
return;
}