From: <kr_...@us...> - 2003-08-23 11:06:02
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv30280/port/src/include Modified Files: ToolBar.h Types.h Log Message: The DockPlace type is renamed to PositionType. The new type should be used for both ToolBar and Notebook control. Index: ToolBar.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/ToolBar.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ToolBar.h 17 Aug 2003 18:15:09 -0000 1.6 --- ToolBar.h 23 Aug 2003 11:05:59 -0000 1.7 *************** *** 4,10 **** #include "Types.h" ! typedef enum {DockLeft=0, DockTop=1, DockRight=2, DockBottom=3} DockPlace; ! ! WindowHandle osCreateToolBar(char *name, DockPlace place, int band_num, int band_position, int offset); void osDestroyToolBar(WindowHandle toolbar); --- 4,8 ---- #include "Types.h" ! WindowHandle osCreateToolBar(char *name, PositionType place, int band_num, int band_position, int offset); void osDestroyToolBar(WindowHandle toolbar); Index: Types.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/Types.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Types.h 17 Jul 2003 17:32:23 -0000 1.15 --- Types.h 23 Aug 2003 11:05:59 -0000 1.16 *************** *** 10,13 **** --- 10,15 ---- #include <string.h> + typedef enum {PosLeft=0, PosTop=1, PosRight=2, PosBottom=3} PositionType; + #ifdef WIN32_TARGET |