From: John L. <jr...@us...> - 2007-08-10 01:41:11
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10860/wxLua/modules/wxluadebug/src Modified Files: wxldebug.cpp Log Message: Push the wxLuaState into Lua instead of the wxLuaStateRefData Also Hash the wxLuaState instead of the wxLuaStateRefData Index: wxldebug.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/wxldebug.cpp,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** wxldebug.cpp 8 Aug 2007 22:49:32 -0000 1.44 --- wxldebug.cpp 10 Aug 2007 01:41:08 -0000 1.45 *************** *** 458,463 **** else if (udata == &wxlua_lreg_derivedmethods_key) s += wxT(" - wxLua Derived Class Methods"); ! else if (udata == &wxlua_lreg_wxluastaterefdata_key) ! s += wxT(" - wxLuaStateRefData"); else if (udata == &wxlua_lreg_objects_key) s += wxT(" - wxLua Pushed Userdata"); --- 458,463 ---- else if (udata == &wxlua_lreg_derivedmethods_key) s += wxT(" - wxLua Derived Class Methods"); ! else if (udata == &wxlua_lreg_wxluastate_key) ! s += wxT(" - wxLuaState"); else if (udata == &wxlua_lreg_objects_key) s += wxT(" - wxLua Pushed Userdata"); |