bug #62955 - Dialog boxes are the wrong size.

This commit is contained in:
rpotts%netscape.com 2000-12-23 06:07:38 +00:00
Родитель 4761f187d0
Коммит c1ae871c79
1 изменённых файлов: 11 добавлений и 1 удалений

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

@ -712,7 +712,17 @@ void nsDocLoaderImpl::doStopDocumentLoad(nsIChannel* aChannel,
FireOnStateChange(this,
aChannel,
nsIWebProgressListener::STATE_STOP |
nsIWebProgressListener::STATE_IS_DOCUMENT |
nsIWebProgressListener::STATE_IS_DOCUMENT,
aStatus);
//
// Fire a final OnStatusChange(...) notification indicating the the
// current document has finished loading...
//
FireOnStateChange(this,
aChannel,
nsIWebProgressListener::STATE_STOP |
nsIWebProgressListener::STATE_IS_WINDOW |
nsIWebProgressListener::STATE_IS_NETWORK,
aStatus);
}