Update of /cvsroot/wxlua/wxLua/bindings/wxstc
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10865/wxLua/bindings/wxstc
Modified Files:
wxstc_datatypes.lua
Log Message:
add wxArrayTreeItemIds and hack for wxTreeItemIdValue
Index: wxstc_datatypes.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** wxstc_datatypes.lua 25 May 2006 22:50:04 -0000 1.29
--- wxstc_datatypes.lua 26 May 2006 20:22:08 -0000 1.30
***************
*** 223,226 ****
--- 223,232 ----
Name = "wxArrayString_FromLuaTable",
},
+ wxArrayTreeItemIds = {
+ Condition = "wxLUA_USE_wxTreeCtrl",
+ DefType = "class",
+ Intrinsic = false,
+ Name = "wxArrayTreeItemIds",
+ },
wxArtProvider = {
BaseClass = "wxObject",
***************
*** 2927,2933 ****
},
wxTreeItemIdValue = {
! Condition = "(wxCHECK_VERSION(2,5,0)) && (wxLUA_USE_wxTreeCtrl)",
! DefType = "class",
! Intrinsic = false,
Name = "wxTreeItemIdValue",
},
--- 2933,2939 ----
},
wxTreeItemIdValue = {
! Condition = "wxLUA_USE_wxTreeCtrl",
! DefType = "enum",
! Intrinsic = true,
Name = "wxTreeItemIdValue",
},
|