bug 490425 fix nsView crash, patch from Martin Stransky, r/sr=roc

This commit is contained in:
Daniel Veditz 2009-05-14 07:04:45 -07:00
Родитель 8714d19108
Коммит 36fec4ba6c
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -164,7 +164,8 @@ nsEventStatus HandleEvent(nsGUIEvent *aEvent)
if (view)
{
view->GetViewManager()->DispatchEvent(aEvent, &result);
nsCOMPtr<nsIViewManager> vm = view->GetViewManager();
vm->DispatchEvent(aEvent, &result);
}
return result;