Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv29041/wxLua/modules/wxluasocket/src
Modified Files:
wxldserv.cpp
Log Message:
Made the wxLuaStackDialog much nicer, faster, search in all cols, collapse and expand child tables.
Index: wxldserv.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldserv.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** wxldserv.cpp 28 Nov 2007 22:55:02 -0000 1.47
--- wxldserv.cpp 29 Nov 2007 23:35:54 -0000 1.48
***************
*** 94,98 ****
const wxString& title,
const wxPoint& pos, const wxSize& size)
! :wxLuaStackDialog(), m_luaDebugger(luaDebugger)
{
wxCHECK_RET(m_luaDebugger != NULL, wxT("Invalid wxLuaDebuggerBase in wxLuaDebuggerStackDialog"));
--- 94,98 ----
const wxString& title,
const wxPoint& pos, const wxSize& size)
! : m_luaDebugger(luaDebugger)
{
wxCHECK_RET(m_luaDebugger != NULL, wxT("Invalid wxLuaDebuggerBase in wxLuaDebuggerStackDialog"));
***************
*** 564,572 ****
}
! bool wxLuaDebuggerBase::DisplayStackDialog(wxWindow *parent, wxWindowID id)
{
wxCHECK_MSG(m_stackDialog == NULL, false, wxT("Stack dialog already shown"));
! m_stackDialog = new wxLuaDebuggerStackDialog(this, parent, id);
m_stackDialog->ShowModal();
m_stackDialog->Destroy();
--- 564,572 ----
}
! bool wxLuaDebuggerBase::DisplayStackDialog(wxWindow *parent, wxWindowID winid)
{
wxCHECK_MSG(m_stackDialog == NULL, false, wxT("Stack dialog already shown"));
! m_stackDialog = new wxLuaDebuggerStackDialog(this, parent, winid);
m_stackDialog->ShowModal();
m_stackDialog->Destroy();
|