From: John L. <jr...@us...> - 2009-10-05 02:51:38
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10796/wxLua/modules/wxluasocket/src Modified Files: wxldserv.cpp Log Message: Add a few more wxDateTime member functions. Speedup check for wxSpinEvent vs wxScrollEvent in wxLuaEventCallback::OnEvent() Reorder list of lightuserdata keys for LUA_REGISTRYINDEX in wxlstate.h Cleanup in wxLuaStackDialog, remove EnumerateGlobalData() and just treat is as a regular table. Fix ignoring events for controls in controls.wx.lua Index: wxldserv.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldserv.cpp,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** wxldserv.cpp 24 Jun 2009 19:57:41 -0000 1.50 --- wxldserv.cpp 5 Oct 2009 02:51:29 -0000 1.51 *************** *** 52,59 **** m_has_message(event.m_has_message), m_lua_ref(event.m_lua_ref), ! m_debugData(wxNullLuaDebugData), m_enabled_flag(event.m_enabled_flag) { - SetDebugData(event.GetReference(), event.GetDebugData()); } --- 52,58 ---- m_has_message(event.m_has_message), m_lua_ref(event.m_lua_ref), ! m_debugData(event.m_debugData), m_enabled_flag(event.m_enabled_flag) { } *************** *** 128,138 **** } - void wxLuaDebuggerStackDialog::EnumerateGlobalData(long lc_item) - { - wxCHECK_RET(m_luaDebugger, wxT("Invalid wxLuaDebuggerServer")); - wxBeginBusyCursor(); // ended in wxLuaDebuggerBase::OnDebugXXX - m_luaDebugger->EnumerateTable(-1, -1, lc_item); - } - // ---------------------------------------------------------------------------- // wxLuaDebuggerProcess --- 127,130 ---- |