From: John L. <jr...@us...> - 2007-06-27 19:56:33
|
Update of /cvsroot/wxlua/wxLua/samples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18874/wxLua/samples Modified Files: bindings.wx.lua Log Message: Add wxDynamicLibrary and friends to bindings Index: bindings.wx.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/samples/bindings.wx.lua,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** bindings.wx.lua 18 Jun 2007 21:40:53 -0000 1.11 --- bindings.wx.lua 27 Jun 2007 19:56:30 -0000 1.12 *************** *** 990,994 **** -- check for mistakes in the bindings if (not c.classInfo) and wx.wxClassInfo.FindClass(c.name) then ! print(c.name.." is missing it's wxClassInfo.") end --- 990,994 ---- -- check for mistakes in the bindings if (not c.classInfo) and wx.wxClassInfo.FindClass(c.name) then ! print(c.name.." is missing it's wxClassInfo, please report this.") end *************** *** 998,1002 **** -- check for mistakes in the bindings if (not bc.classInfo) and wx.wxClassInfo.FindClass(bc.name) then ! print(bc.name.." is missing it's wxClassInfo.") end --- 998,1002 ---- -- check for mistakes in the bindings if (not bc.classInfo) and wx.wxClassInfo.FindClass(bc.name) then ! print(bc.name.." is missing it's wxClassInfo, please report this.") end *************** *** 1032,1036 **** end ! if ci:GetBaseClass2() then print(ci:GetClassName(), "Has two bases!") end ci = ci:GetBaseClass1() -- FIXME handle two base classes, maybe? end --- 1032,1036 ---- end ! --if ci:GetBaseClass2() then print(ci:GetClassName(), "Has two bases!") end ci = ci:GetBaseClass1() -- FIXME handle two base classes, maybe? end |