From: John L. <jr...@us...> - 2006-09-15 00:11:03
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv23109/wxLua/modules/wxluadebug/include Modified Files: wxldebug.h Log Message: rename EVT_WXLUA_DEBUG_XXX to EVT_WXLUA_DEBUGGER since that's what they apply to rename wxEVT_WXLUA_DEBUG_XXX to wxEVT_WXLUA_DEBUGGER_XXX wxLuaDebugEvent renamed to wxLuaDebuggerEvent rename wxLUASOCKET_DEBUG_EVENT_XXX to wxLUASOCKET_DEBUGGEE_EVENT_XXX rename wxLUASOCKET_DEBUG_CMD_XXX to wxLUASOCKET_DEBUGGER_CMD_XXX make all wxLuaSocketBase::ReadXXX functions return bool for success checking rename wxLuaDebugServer to wxLuaDebuggerServer Index: wxldebug.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** wxldebug.h 13 Sep 2006 04:13:47 -0000 1.23 --- wxldebug.h 15 Sep 2006 00:10:55 -0000 1.24 *************** *** 6,15 **** // Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// ! // Ray Gilbert moved class definitions out of wxLuaDebugServer, wxLuaDebugIO // to allow alternate debugger model // // Original Debugging Model: ! // wxLuaDebugServer, wxLuaDebugTarget ! // The current process acts as a server - debugger (wxLuaDebugServer) // starts a new process which starts up as a client - debuggee (wxLuaDebugTarget) // that connects back to server process. --- 6,15 ---- // Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// ! // Ray Gilbert moved class definitions out of wxLuaDebuggerServer, wxLuaDebugIO // to allow alternate debugger model // // Original Debugging Model: ! // wxLuaDebuggerServer, wxLuaDebugTarget ! // The current process acts as a server - debugger (wxLuaDebuggerServer) // starts a new process which starts up as a client - debuggee (wxLuaDebugTarget) // that connects back to server process. *************** *** 149,153 **** virtual wxLuaDebugData GetGlobalData(); ! // allows for this to be subclassed for use with the wxLuaDebugServer virtual bool IsDebugServer() const { return false; } --- 149,153 ---- virtual wxLuaDebugData GetGlobalData(); ! // allows for this to be subclassed for use with the wxLuaDebuggerServer virtual bool IsDebugServer() const { return false; } |