Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20946/wxLua/modules/wxluadebug/include
Modified Files:
wxldebug.h wxlstack.h
Log Message:
Show linked table message when expanding all for the first table only
Index: wxldebug.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** wxldebug.h 4 Dec 2007 05:20:29 -0000 1.46
--- wxldebug.h 4 Dec 2007 16:26:11 -0000 1.47
***************
*** 96,100 ****
// ----------------------------------------------------------------------------
// wxLuaDebugData - a wxObject ref counted container for a wxLuaDebugItemArray
! // The Ref data is always expected to exist and the destructor deletes the array items
// ----------------------------------------------------------------------------
--- 96,100 ----
// ----------------------------------------------------------------------------
// wxLuaDebugData - a wxObject ref counted container for a wxLuaDebugItemArray
! // The destructor deletes the array items.
// ----------------------------------------------------------------------------
Index: wxlstack.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxlstack.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** wxlstack.h 4 Dec 2007 05:20:29 -0000 1.13
--- wxlstack.h 4 Dec 2007 16:26:11 -0000 1.14
***************
*** 177,181 ****
void EndBatch();
- wxTreeItemId FindTreeItemId(const wxTreeItemId& id, wxLuaStackListData* stkListData) const;
long FindListItem(wxLuaStackListData* stkListData, bool get_parent = false) const;
--- 177,180 ----
***************
*** 229,235 ****
int m_batch_count;
! wxLongToLongHashMap m_expandedItems;
! wxArrayPtrVoid m_listData;
static wxSize m_defaultSize; // remember last dialog size
--- 228,234 ----
int m_batch_count;
! wxLongToLongHashMap m_expandedItems; // map[long Lua table ptr] = &wxLuaStackListData
! wxArrayPtrVoid m_listData; // array of wxLuaStackListData
static wxSize m_defaultSize; // remember last dialog size
|