From: John L. <jr...@us...> - 2007-06-06 18:03:54
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2918/wxLua/modules/wxlua/include Modified Files: wxlstate.h Log Message: Fix %property generation on the fly Remove remaining extra code in wxLuaState::CallOverloadedFunction Index: wxlstate.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** wxlstate.h 6 Jun 2007 03:53:40 -0000 1.70 --- wxlstate.h 6 Jun 2007 18:03:48 -0000 1.71 *************** *** 160,164 **** WXDLLIMPEXP_WXLUA int LUACALL wxlua_iswxluatype(int luatype, int wxluaarg_type); // Get a human readable name for the predefined WXLUAARG_XXX or s_wxluaarg_XXX types. ! // returns "unknown" if the tag was not one of the predefined types. WXDLLIMPEXP_WXLUA wxString wxlua_getwxluatypename(int wxluaarg_type); --- 160,164 ---- WXDLLIMPEXP_WXLUA int LUACALL wxlua_iswxluatype(int luatype, int wxluaarg_type); // Get a human readable name for the predefined WXLUAARG_XXX or s_wxluaarg_XXX types. ! // returns empty string if the tag was not one of the predefined types. WXDLLIMPEXP_WXLUA wxString wxlua_getwxluatypename(int wxluaarg_type); *************** *** 669,672 **** --- 669,673 ---- // Returns the 'name' of a lua userdata object from its tag. + // Also handles predefined wxLua arg tags, see wxlua_getwxluatypename // returns wxEmptyString on failure. wxString GetLuaTagName(int tag) const; |