Make sure the port is initialized before being used.

This commit is contained in:
sfraser%netscape.com 1998-12-16 01:59:31 +00:00
Родитель 4182e3c193
Коммит e9e844fade
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -63,16 +63,18 @@ nsresult theResult = NS_ERROR_FAILURE;
THPrint prtRec;
GrafPtr oldport;
::GetPort(&oldport);
// open the printing manager
::PrOpen();
if(::PrError() == noErr){
mPrintManagerOpen = PR_TRUE;
prtRec = (THPrint) NewHandle(sizeof(TPrint));
prtRec = (THPrint)::NewHandle(sizeof(TPrint));
if(prtRec!=nsnull){
::PrintDefault(prtRec);
// standard print dialog, if true print
if(PrJobDialog(prtRec)){
if(::PrJobDialog(prtRec)){
// have the print record
theResult = NS_OK;
mPrtRec = prtRec;