One line regression fix for bug 79900. the fix for 80505 caused this.

Change from a QI to a GetAccessible() call on content nodes.
r=dr@netscape.com sr=scc@mozilla.org
This commit is contained in:
jgaunt%netscape.com 2001-05-23 02:55:37 +00:00
Родитель e5f3c3cd03
Коммит b47a889fee
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -233,7 +233,8 @@ NS_IMETHODIMP nsRootAccessible::HandleEvent(nsIDOMEvent* aEvent)
if (!frame)
return NS_OK;
nsCOMPtr<nsIAccessible> a(do_QueryInterface(frame));
nsCOMPtr<nsIAccessible> a;
frame->GetAccessible(getter_AddRefs(a));
if (!a)
a = do_QueryInterface(content);

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

@ -233,7 +233,8 @@ NS_IMETHODIMP nsRootAccessible::HandleEvent(nsIDOMEvent* aEvent)
if (!frame)
return NS_OK;
nsCOMPtr<nsIAccessible> a(do_QueryInterface(frame));
nsCOMPtr<nsIAccessible> a;
frame->GetAccessible(getter_AddRefs(a));
if (!a)
a = do_QueryInterface(content);