Fixed a printing crashing bug in Update(),

This commit is contained in:
dcone%netscape.com 1999-05-24 20:44:53 +00:00
Родитель e09312f5b2
Коммит c81474e267
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -760,7 +760,7 @@ PRBool nsWindow::OnPaint(nsPaintEvent &event)
//------------------------------------------------------------------------- //-------------------------------------------------------------------------
NS_IMETHODIMP nsWindow::Update() NS_IMETHODIMP nsWindow::Update()
{ {
if (! mVisible) if (! mVisible || !mWindowPtr)
return NS_OK; return NS_OK;
static PRBool reentrant = PR_FALSE; static PRBool reentrant = PR_FALSE;
@ -778,6 +778,7 @@ NS_IMETHODIMP nsWindow::Update()
#if TARGET_CARBON #if TARGET_CARBON
::GetWindowRegion(mWindowPtr, kWindowUpdateRgn, saveUpdateRgn); ::GetWindowRegion(mWindowPtr, kWindowUpdateRgn, saveUpdateRgn);
#else #else
if(mWindowPtr)
::CopyRgn(((WindowRecord*)mWindowPtr)->updateRgn, saveUpdateRgn); ::CopyRgn(((WindowRecord*)mWindowPtr)->updateRgn, saveUpdateRgn);
#endif #endif