Update of /cvsroot/wxlua/wxLua/modules/wxlua/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6284/wxLua/modules/wxlua/include
Modified Files:
wxlstate.h
Log Message:
use wxList::compatibility_iterator not wxNode* for wxUSE_STL == 1 and 0
Index: wxlstate.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** wxlstate.h 26 Feb 2007 01:57:06 -0000 1.61
--- wxlstate.h 19 Mar 2007 03:47:21 -0000 1.62
***************
*** 223,227 ****
wxList m_callbackList; // event objects for wxLuaCallback
wxList m_winDestroyCallbackList; // wxLuaWinDestroyCallback installed
! wxList m_windowList; // all wxWindow objects, wxWidgets will delete these
// but for an embedded program they must be deleted before
// shutting down the interpreter, else they dangle
--- 223,227 ----
wxList m_callbackList; // event objects for wxLuaCallback
wxList m_winDestroyCallbackList; // wxLuaWinDestroyCallback installed
! wxWindowList m_windowList; // all wxWindow objects, wxWidgets will delete these
// but for an embedded program they must be deleted before
// shutting down the interpreter, else they dangle
|