Bug 532422, this landing just removes unused variable r=Olli

This commit is contained in:
Masayuki Nakano 2010-01-08 14:01:42 +09:00
Родитель 57e899ccdc
Коммит 49fe8f2411
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -5958,8 +5958,7 @@ PresShell::GetFocusedDOMWindowInOurWindow()
nsCOMPtr<nsPIDOMWindow> rootWindow = window->GetPrivateRoot();
NS_ENSURE_TRUE(rootWindow, nsnull);
nsPIDOMWindow* focusedWindow;
nsIContent* content =
nsFocusManager::GetFocusedDescendant(rootWindow, PR_TRUE, &focusedWindow);
nsFocusManager::GetFocusedDescendant(rootWindow, PR_TRUE, &focusedWindow);
return focusedWindow;
}