Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10846/wxLua/modules/wxluadebug/src
Modified Files:
staktree.cpp
Log Message:
add wxSocket implementation for wxLuaSockets... ifdefed off since it seems very slow and doesn't always connect
Index: staktree.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/staktree.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** staktree.cpp 3 Oct 2006 19:52:16 -0000 1.31
--- staktree.cpp 4 Oct 2006 05:55:02 -0000 1.32
***************
*** 160,163 ****
--- 160,164 ----
{
wxCHECK_RET(m_wxlState.Ok(), wxT("Invalid wxLuaState"));
+ wxBusyCursor wait;
wxLuaDebugData debugData;
debugData.EnumerateStack(m_wxlState);
***************
*** 167,170 ****
--- 168,172 ----
{
wxCHECK_RET(m_wxlState.Ok(), wxT("Invalid wxLuaState"));
+ wxBusyCursor wait;
wxLuaDebugData debugData;
debugData.EnumerateStackEntry(m_wxlState, nEntry, m_luaReferences);
***************
*** 174,177 ****
--- 176,180 ----
{
wxCHECK_RET(m_wxlState.Ok(), wxT("Invalid wxLuaState"));
+ wxBusyCursor wait;
wxLuaDebugData debugData;
debugData.EnumerateTable(m_wxlState, nRef, nEntry, m_luaReferences);
***************
*** 181,184 ****
--- 184,188 ----
{
wxCHECK_RET(m_wxlState.Ok(), wxT("Invalid wxLuaState"));
+ wxBusyCursor wait;
wxLuaDebugData debugData;
debugData.EnumerateTable(m_wxlState, -1, -1, m_luaReferences); // Get global table
|