Update of /cvsroot/squeak/squeak/platforms/unix/vm-display-Quartz
In directory sc8-pr-cvs1:/tmp/cvs-serv5430
Modified Files:
sqUnixQuartz.m
Log Message:
Suppress warning for CPSEnableForegroundOperation() which always fails (even when it succeeds).
Index: sqUnixQuartz.m
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/unix/vm-display-Quartz/sqUnixQuartz.m,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** sqUnixQuartz.m 3 Sep 2003 18:12:22 -0000 1.8
--- sqUnixQuartz.m 3 Sep 2003 21:22:16 -0000 1.9
***************
*** 36,40 ****
* directory `platforms/unix/doc' before proceeding with any such use.
*
! * Last edited: 2003-09-02 15:34:38 by piumarta on emilia.inria.fr
*/
--- 36,40 ----
* directory `platforms/unix/doc' before proceeding with any such use.
*
! * Last edited: 2003-09-03 23:09:33 by piumarta on emilia.inria.fr
*/
***************
*** 1164,1168 ****
else
{
! try(CPSEnableForegroundOperation, (&psn, 0x03, 0x3c, 0x2c, 0x1103), " (ignored)");
try(CPSSetFrontProcess, (&psn), "");
}
--- 1164,1168 ----
else
{
! CPSEnableForegroundOperation(&psn, 0x03, 0x3c, 0x2c, 0x1103);
try(CPSSetFrontProcess, (&psn), "");
}
|