Protect against a null mWebShell.

This commit is contained in:
ramiro%netscape.com 1999-08-17 07:09:44 +00:00
Родитель f568064ee2
Коммит ee45c1b17b
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1518,7 +1518,9 @@ nsBrowserWindow::Layout(PRInt32 aWidth, PRInt32 aHeight)
rr.y += WEBSHELL_TOP_INSET;
rr.width -= WEBSHELL_LEFT_INSET + WEBSHELL_RIGHT_INSET;
rr.height -= WEBSHELL_TOP_INSET + WEBSHELL_BOTTOM_INSET;
mWebShell->SetBounds(rr.x, rr.y, rr.width, rr.height);
if (mWebShell) {
mWebShell->SetBounds(rr.x, rr.y, rr.width, rr.height);
}
}
NS_IMETHODIMP