[Waba-commits] CVS: waba/vm/win32 nmwin32_c.c,1.9,1.10
Status: Abandoned
Brought to you by:
bornet
From: MURANAKA M. <mo...@us...> - 2001-09-02 03:48:47
|
Update of /cvsroot/waba/waba/vm/win32 In directory usw-pr-cvs1:/tmp/cvs-serv12055/vm/win32 Modified Files: nmwin32_c.c Log Message: Modified waba.ui.Conrtol not to inherit waba.sys.Thread. When the control class developer who wannna use thread, he must implement Runnable interface and thread code in his code by himself. Index: nmwin32_c.c =================================================================== RCS file: /cvsroot/waba/waba/vm/win32/nmwin32_c.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** nmwin32_c.c 2001/08/18 23:02:26 1.9 --- nmwin32_c.c 2001/09/02 03:48:43 1.10 *************** *** 92,105 **** // // 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 // --- 92,104 ---- // // 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 // |