[Waba-commits] CVS: waba/vm/linux nm_linux_c.h,1.11,1.12
Status: Abandoned
Brought to you by:
bornet
From: Olivier B. <bo...@us...> - 2001-08-18 22:57:25
|
Update of /cvsroot/waba/waba/vm/linux In directory usw-pr-cvs1:/tmp/cvs-serv431/vm/linux Modified Files: nm_linux_c.h Log Message: As Thread as now a variable (Runnable target), we must update the hooks of the Control class which extend Thread Index: nm_linux_c.h =================================================================== RCS file: /cvsroot/waba/waba/vm/linux/nm_linux_c.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** nm_linux_c.h 2001/08/18 20:26:21 1.11 --- nm_linux_c.h 2001/08/18 22:57:22 1.12 *************** *** 183,195 **** // var[0] = Class ! // var[1] = int x ! // var[2] = int y ! // var[3] = int width ! // var[4] = int height ! #define WOBJ_ControlX(o) (objectPtr(o))[1].intValue ! #define WOBJ_ControlY(o) (objectPtr(o))[2].intValue ! #define WOBJ_ControlWidth(o) (objectPtr(o))[3].intValue ! #define WOBJ_ControlHeight(o) (objectPtr(o))[4].intValue /************************************************************************* --- 183,196 ---- // var[0] = Class ! // var[1] = Runnable target (from waba.sys.Thread) ! // var[2] = int x ! // var[3] = int y ! // var[4] = int width ! // var[5] = int height ! #define WOBJ_ControlX(o) (objectPtr(o))[2].intValue ! #define WOBJ_ControlY(o) (objectPtr(o))[3].intValue ! #define WOBJ_ControlWidth(o) (objectPtr(o))[4].intValue ! #define WOBJ_ControlHeight(o) (objectPtr(o))[5].intValue /************************************************************************* |