From: John L. <jr...@us...> - 2009-11-21 20:24:14
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28276/wxLua/modules/wxluadebug/include Modified Files: wxlstack.h Log Message: Fix bug in showing folder symbol for key in wxLuaStackDialog Fix bug in not removing expanded table ref for empty tables in wxLuaStackDialog Remember if the dialog was maximized the last time it was shown Index: wxlstack.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxlstack.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** wxlstack.h 5 Oct 2009 02:51:29 -0000 1.19 --- wxlstack.h 21 Nov 2009 20:24:02 -0000 1.20 *************** *** 242,246 **** wxArrayPtrVoid m_listData; // array of wxLuaStackListData ! static wxSize m_defaultSize; // remember last dialog size private: --- 242,247 ---- wxArrayPtrVoid m_listData; // array of wxLuaStackListData ! static wxSize sm_defaultSize; // remember last dialog size ! static bool sm_maximized; // remember if maximized private: |