From: John L. <jr...@us...> - 2007-03-19 03:47:24
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6284/wxLua/modules/wxluadebug/src Modified Files: staktree.cpp Log Message: use wxList::compatibility_iterator not wxNode* for wxUSE_STL == 1 and 0 Index: staktree.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/staktree.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** staktree.cpp 26 Feb 2007 05:17:30 -0000 1.36 --- staktree.cpp 19 Mar 2007 03:47:21 -0000 1.37 *************** *** 355,359 **** else if (pDebugDataItem->GetName() == _("Event Callback List")) { ! wxNode* node = wxlState.GetTrackedCallbackList()->GetFirst(); while (node) { --- 355,359 ---- else if (pDebugDataItem->GetName() == _("Event Callback List")) { ! wxList::compatibility_iterator node = wxlState.GetTrackedCallbackList()->GetFirst(); while (node) { *************** *** 364,368 **** if (wxlState.GetLuaBindingList()) { ! wxLuaBindingList::Node *bindNode = wxlState.GetLuaBindingList()->GetFirst(); for (; bindNode; bindNode = bindNode->GetNext()) { --- 364,368 ---- if (wxlState.GetLuaBindingList()) { ! wxLuaBindingList::compatibility_iterator bindNode = wxlState.GetLuaBindingList()->GetFirst(); for (; bindNode; bindNode = bindNode->GetNext()) { *************** *** 388,392 **** else { ! wxNode* node = wxlState.GetLuaStateData()->m_windowList.GetFirst(); while (node) { --- 388,392 ---- else { ! wxWindowList::compatibility_iterator node = wxlState.GetLuaStateData()->m_windowList.GetFirst(); while (node) { |