Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18568/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
cleanup genwxbind.lua, better var names, builtin -> number or function
cleanup wxlprint, wxlhtmlwin
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -d -r1.88 -r1.89
*** genwxbind.lua 13 Dec 2006 00:27:56 -0000 1.88
--- genwxbind.lua 13 Dec 2006 06:57:48 -0000 1.89
***************
*** 24,28 ****
-- ---------------------------------------------------------------------------
! WXLUA_BINDING_VERSION = 1 -- Used to verify that the bindings are updated
-- see modules/wxlua/include/wxldefs.h
--- 24,28 ----
-- ---------------------------------------------------------------------------
! WXLUA_BINDING_VERSION = 2 -- Used to verify that the bindings are updated
-- see modules/wxlua/include/wxldefs.h
[...1538 lines suppressed...]
table.insert(fileData, "WXLUAMETHOD "..MakeClassVar(ObjectName).."_methods[] = {\n")
--- 4726,4730 ----
-- Output Method Map Table
! CommentBindingTable(fileData, "// Map Lua Class Methods to C Binding Functions\n")
table.insert(fileData, "WXLUAMETHOD "..MakeClassVar(ObjectName).."_methods[] = {\n")
***************
*** 4811,4815 ****
end
! local bindCount = table.getn(BindTableList)
for i=1,bindCount do
if BindTableList[i].Map then
--- 4736,4740 ----
end
! local bindCount = #BindTableList
for i=1,bindCount do
if BindTableList[i].Map then
|