Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17634/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
fix previous commit that skipped overloaded binding functions without #if conditions
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -d -r1.94 -r1.95
*** genwxbind.lua 6 Feb 2007 04:17:41 -0000 1.94
--- genwxbind.lua 7 Feb 2007 01:45:02 -0000 1.95
***************
*** 4474,4480 ****
if overload_condition ~= "" then overload_condition = overload_condition.."||" end
overload_condition = overload_condition.."("..condition..")"
-
- overloadCount = overloadCount + 1 + #v
end
end
--- 4474,4480 ----
if overload_condition ~= "" then overload_condition = overload_condition.."||" end
overload_condition = overload_condition.."("..condition..")"
end
+
+ overloadCount = overloadCount + 1 + #v
end
|