From: John L. <jr...@us...> - 2009-05-14 05:06:40
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv9404/wxLua/bindings/wxwidgets Modified Files: wx_datatypes.lua Log Message: Allow multiple inheritance in the bindings. Index: wx_datatypes.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wx_datatypes.lua,v retrieving revision 1.99 retrieving revision 1.100 diff -C2 -d -r1.99 -r1.100 *** wx_datatypes.lua 13 Dec 2008 22:35:52 -0000 1.99 --- wx_datatypes.lua 14 May 2009 05:06:21 -0000 1.100 *************** *** 164,168 **** }, wxANIHandler = { ! BaseClass = "wxCURHandler", Condition = "(wxLUA_USE_wxImage && wxUSE_IMAGE) && (wxUSE_ICO_CUR)", IsNumber = false, --- 164,170 ---- }, wxANIHandler = { ! BaseClasses = { ! [1] = "wxCURHandler", [...5638 lines suppressed...] ! BaseClasses = { ! [1] = "wxObject", ! }, Condition = "wxLUA_USE_wxXML && wxUSE_XML", IsNumber = false, *************** *** 4391,4395 **** }, wxXmlResource = { ! BaseClass = "wxObject", Condition = "wxLUA_USE_wxXRC && wxUSE_XRC", IsNumber = false, --- 5145,5151 ---- }, wxXmlResource = { ! BaseClasses = { ! [1] = "wxObject", ! }, Condition = "wxLUA_USE_wxXRC && wxUSE_XRC", IsNumber = false, |