fixed crash due to missing {} after if() statement

This commit is contained in:
pierre%netscape.com 1998-09-28 23:30:17 +00:00
Родитель 7ede838ed2
Коммит 1ddc449899
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -736,8 +736,10 @@ nsRefData *theRefData;
#if 1
whichwindow = FrontWindow();
if (whichwindow)
theRefData = (nsRefData*)GetWRefCon (whichwindow);
raptorWindow = (nsWindow*)theRefData->GetTopWidget();
{
theRefData = (nsRefData*)GetWRefCon (whichwindow);
raptorWindow = (nsWindow*)theRefData->GetTopWidget();
}
#else
// XXX For some reason this returns null... which is bad...
raptorWindow = mToolkit->GetFocus();