fixed a crash caused by unitialized variable focusedWidget.

This commit is contained in:
beard%netscape.com 1999-03-07 23:56:22 +00:00
Родитель a68709ce1a
Коммит 8df05818bc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -118,7 +118,7 @@ PRBool nsMacEventHandler::HandleMenuCommand(
long aMenuResult)
{
// get the focused widget
nsWindow* focusedWidget;
nsWindow* focusedWidget = nsnull;
nsCOMPtr<nsToolkit> toolkit ( dont_AddRef((nsToolkit*)mTopLevelWidget->GetToolkit()) );
if (toolkit)
focusedWidget = toolkit->GetFocus();