Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
removed TRUE/FALSE pushed into lua since lua has true/false now
removed pointers to functions in wxLuaBinding, just use the member vars
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** genwxbind.lua 30 Nov 2006 05:56:30 -0000 1.83
--- genwxbind.lua 1 Dec 2006 06:25:46 -0000 1.84
***************
*** 4269,4279 ****
table.insert(fileData, "{\n")
table.insert(fileData, " m_nameSpace = wxT(\""..hook_lua_namespace.."\");\n")
! table.insert(fileData, " pfGetClassList = "..hook_cpp_class_funcname..";\n")
! table.insert(fileData, " pfGetDefineList = "..hook_cpp_define_funcname..";\n")
! table.insert(fileData, " pfGetStringList = "..hook_cpp_string_funcname..";\n")
! table.insert(fileData, " pfGetEventList = "..hook_cpp_event_funcname..";\n")
! table.insert(fileData, " pfGetObjectList = "..hook_cpp_object_funcname..";\n")
! table.insert(fileData, " pfGetBuiltinList = "..hook_cpp_function_funcname..";\n")
! table.insert(fileData, " Initialize();\n")
table.insert(fileData, "}\n")
table.insert(fileData, "\n")
--- 4269,4278 ----
table.insert(fileData, "{\n")
table.insert(fileData, " m_nameSpace = wxT(\""..hook_lua_namespace.."\");\n")
! table.insert(fileData, " m_classList = "..hook_cpp_class_funcname.."(m_classCount);\n")
! table.insert(fileData, " m_defineList = "..hook_cpp_define_funcname.."(m_defineCount);\n")
! table.insert(fileData, " m_stringList = "..hook_cpp_string_funcname.."(m_stringCount);\n")
! table.insert(fileData, " m_eventList = "..hook_cpp_event_funcname.."(m_eventCount);\n")
! table.insert(fileData, " m_objectList = "..hook_cpp_object_funcname.."(m_objectCount);\n")
! table.insert(fileData, " m_functionList = "..hook_cpp_function_funcname.."(m_functionCount);\n")
table.insert(fileData, "}\n")
table.insert(fileData, "\n")
|