Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10540/wxLua/modules/wxluadebug/src
Modified Files:
wxldebug.cpp
Log Message:
Replace wxLuaState::GetCallBaseClassfunction with wxlua_getcallbaseclassfunction
so we no longer need a wxLuaState in the __index func for class objects
Better names for the metatable C functions
Index: wxldebug.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/wxldebug.cpp,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** wxldebug.cpp 25 Jun 2007 16:07:58 -0000 1.36
--- wxldebug.cpp 25 Jun 2007 23:04:02 -0000 1.37
***************
*** 458,461 ****
--- 458,463 ----
else if (udata == &wxlua_lreg_wxluastaterefdata_key)
s += wxT(" - wxLuaStateRefData");
+ else if (udata == &wxlua_lreg_callbaseclassfunc_key)
+ s += wxT(" - CallBaseClassFunc");
else if (udata == &wxlua_lreg_metatable_tag_key)
|