Update of /cvsroot/wxlua/wxLua/bindings/wxstc
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27493/wxLua/bindings/wxstc
Modified Files:
wxstc_datatypes.lua
Log Message:
change enum wxClass::XXX to be accessed as wxClass_XXX
added %staticonly keyword for classes that only have static members
Index: wxstc_datatypes.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** wxstc_datatypes.lua 17 May 2006 05:02:04 -0000 1.25
--- wxstc_datatypes.lua 17 May 2006 22:47:09 -0000 1.26
***************
*** 63,66 ****
--- 63,71 ----
Name = "LPVOID",
},
+ LuaTable = {
+ DefType = "wxtypedef",
+ Intrinsic = true,
+ Name = "LuaTable",
+ },
PVOID = {
DefType = "builtin",
***************
*** 197,200 ****
--- 202,210 ----
Name = "wxArrayInt",
},
+ wxArrayInt_FromLuaTable = {
+ DefType = "wxtypedef",
+ Intrinsic = true,
+ Name = "wxArrayInt_FromLuaTable",
+ },
wxArrayString = {
Condition = "wxLUA_USE_wxArrayString",
|