This commit is contained in:
sharparrow1%yahoo.com 2006-04-20 04:03:01 +00:00
Родитель 6bc6526a42
Коммит 678da77cb5
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -660,6 +660,10 @@ nsresult nsIView::CreateWidget(const nsIID &aWindowIID,
: nsnull;
trect += offset;
if (aWidgetInitData->mWindowType == eWindowType_popup) {
// Without a parent, we can't make a popup. This can happen
// when printing
if (!parentWidget)
return NS_ERROR_FAILURE;
mWindow->Create(parentWidget->GetNativeData(NS_NATIVE_WIDGET), trect,
::HandleEvent, dx, nsnull, nsnull, aWidgetInitData);
} else {