Bug 483591 - PRBool problem in nsIMEStateManager::IsActive, r+sr=bz

This commit is contained in:
Olli Pettay 2009-03-18 15:24:04 +02:00
Родитель 72f7b47ede
Коммит 3b80926e64
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -213,7 +213,7 @@ nsIMEStateManager::IsActive(nsPresContext* aPresContext)
}
nsIPresShell* shell = aPresContext->GetPresShell();
NS_ENSURE_TRUE(shell, NS_ERROR_NOT_AVAILABLE);
NS_ENSURE_TRUE(shell, PR_FALSE);
nsIViewManager* vm = shell->GetViewManager();
NS_ENSURE_TRUE(vm, PR_FALSE);
nsCOMPtr<nsIViewObserver> observer;