From: John L. <jr...@us...> - 2005-11-25 02:43:10
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25355/wxLua/modules/wxluadebug/src Modified Files: staktree.cpp Log Message: started to break up internal.cpp into wxlstate, wxlcallb... rename library.h/cpp to wxlhandl since it only contains wxLuaHandler remove wxLuaApp code, it doesn't exist anymore compiles and runs in linux Index: staktree.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/staktree.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** staktree.cpp 18 Jun 2005 20:46:01 -0000 1.3 --- staktree.cpp 25 Nov 2005 02:43:02 -0000 1.4 *************** *** 33,37 **** #include "wxluasocket/include/debugio.h" #include "wxluasocket/include/dserver.h" - #include "wxlua/include/library.h" #if defined(__WXGTK__) || defined(__WXMAC__) || defined(__WXMOTIF__) --- 33,36 ---- *************** *** 273,277 **** m_stackComboBox->Append(item->GetName()); #else ! m_stackComboBox->Append(item->GetName(), (void *) item->GetReference()); #endif } --- 272,276 ---- m_stackComboBox->Append(item->GetName()); #else ! m_stackComboBox->Append(item->GetName(), (void *) item->GetReference()); #endif } |