Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv994/wxLua/modules/wxluadebug/src
Modified Files:
wxldebug.cpp
Log Message:
Give a message about not being able to traverse refed tables for the stack dialog instead of silently failing.
Index: wxldebug.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/wxldebug.cpp,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** wxldebug.cpp 22 Dec 2007 06:07:16 -0000 1.62
--- wxldebug.cpp 22 Dec 2007 16:42:01 -0000 1.63
***************
*** 413,416 ****
--- 413,420 ----
value += wxLuaBindClassString(wxlClass);
}
+ else if (key == &wxlua_lreg_debug_refs_key)
+ {
+ value += wxT(" Note: You cannot traverse refed tables");
+ }
}
|