Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19007/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
shuffle header includes for bindings
fix double to int warning in wxEvtHandler::Connect and Disconnect
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** genwxbind.lua 25 May 2006 22:50:04 -0000 1.69
--- genwxbind.lua 29 May 2006 22:31:17 -0000 1.70
***************
*** 3888,3895 ****
table.insert(fileData, "#ifndef __HOOK_WXLUA_"..hook_cpp_namespace.."_H__\n")
table.insert(fileData, "#define __HOOK_WXLUA_"..hook_cpp_namespace.."_H__\n\n")
- table.insert(fileData, "#include \"wxlua/include/internal.h\"\n\n")
table.insert(fileData, (hook_cpp_binding_header_includes or "").."\n")
if hook_bind_condition then
table.insert(fileData, "#if "..hook_bind_condition.."\n\n")
--- 3888,3898 ----
table.insert(fileData, "#ifndef __HOOK_WXLUA_"..hook_cpp_namespace.."_H__\n")
table.insert(fileData, "#define __HOOK_WXLUA_"..hook_cpp_namespace.."_H__\n\n")
table.insert(fileData, (hook_cpp_binding_header_includes or "").."\n")
+ table.insert(fileData, "#include \"wxlua/include/wxlstate.h\"\n")
+ table.insert(fileData, "#include \"wxlua/include/wxlbind.h\"\n")
+ table.insert(fileData, "#include \"wxlua/include/internal.h\"\n\n")
+
if hook_bind_condition then
table.insert(fileData, "#if "..hook_bind_condition.."\n\n")
|