From: John L. <jr...@us...> - 2007-02-15 02:51:38
|
Update of /cvsroot/wxlua/wxLua/bindings In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2121/bindings Modified Files: genwxbind.lua Log Message: fix handling "const char*" for the members Index: genwxbind.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v retrieving revision 1.97 retrieving revision 1.98 diff -C2 -d -r1.97 -r1.98 *** genwxbind.lua 7 Feb 2007 20:57:49 -0000 1.97 --- genwxbind.lua 15 Feb 2007 02:51:35 -0000 1.98 *************** *** 3154,3157 **** --- 3154,3162 ---- end end + elseif argType == "char" then + overload_argList = overload_argList.."&s_wxluaarg_String, " + argItem = "wxlState.GetStringType("..argNum..")" + + argTypeWithAttrib = "wxCharBuffer" else if isTranslated and (origIndirectionCount == 0) then |