|
From: John M M. <jo...@us...> - 2003-05-19 07:44:45
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv31732/squeak/platforms/Mac OS/vm
Modified Files:
sqMacWindow.c
Log Message:
3.5.1b1 Changed plugin def to browserplugin to avoid confusion.
Index: sqMacWindow.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacWindow.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** sqMacWindow.c 5 Mar 2003 19:58:36 -0000 1.21
--- sqMacWindow.c 19 May 2003 07:20:17 -0000 1.22
***************
*** 54,58 ****
}
! #ifndef PLUGIN
int ioSetFullScreen(int fullScreen) {
Rect screen,portRect,ignore;
--- 54,58 ----
}
! #ifndef BROWSERPLUGIN
int ioSetFullScreen(int fullScreen) {
Rect screen,portRect,ignore;
***************
*** 345,349 ****
}
! #ifndef PLUGIN
int ioScreenSize(void) {
int w = 10, h = 10;
--- 345,349 ----
}
! #ifndef BROWSERPLUGIN
int ioScreenSize(void) {
int w = 10, h = 10;
***************
*** 527,531 ****
! #if !I_AM_CARBON_EVENT || PLUGIN
#define rectWidth(aRect) ((aRect).right - (aRect).left)
#define rectHeight(aRect) ((aRect).bottom - (aRect).top)
--- 527,531 ----
! #if !I_AM_CARBON_EVENT || BROWSERPLUGIN
#define rectWidth(aRect) ((aRect).right - (aRect).left)
#define rectHeight(aRect) ((aRect).bottom - (aRect).top)
|