|
From: John M M. <jo...@us...> - 2002-11-10 09:24:25
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/plugins/PrintJobPlugin
In directory usw-pr-cvs1:/tmp/cvs-serv26262/squeak/platforms/Mac OS/plugins/PrintJobPlugin
Modified Files:
sqMacPrinting.c
Log Message:
3.2.8b9 Fix us temp memory for newgworld to enable one to print large screens, otherwise it silently fails and causes the printer to eject a blank page.
Index: sqMacPrinting.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/plugins/PrintJobPlugin/sqMacPrinting.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** sqMacPrinting.c 8 Aug 2002 01:25:31 -0000 1.4
--- sqMacPrinting.c 10 Nov 2002 09:24:22 -0000 1.5
***************
*** 906,910 ****
PixMapHandle thePix;
! NewGWorld(&aGWorld, printJob->depth, &srcRect, stColorTable, NULL, keepLocal);
thePix = GetGWorldPixMap (aGWorld);
LockPixels(thePix);
--- 906,910 ----
PixMapHandle thePix;
! NewGWorld(&aGWorld, printJob->depth, &srcRect, stColorTable, NULL, keepLocal+useTempMem);
thePix = GetGWorldPixMap (aGWorld);
LockPixels(thePix);
|