From: John L. <jr...@us...> - 2005-11-26 03:15:29
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18390/wxLua/modules/wxluasocket/src Modified Files: dservice.cpp wxldserv.cpp wxldtarg.cpp Log Message: fix wxMessageDialog in dialogs.i, at least for 2.6 cleanup wxLuaObject to use a single int and enum to store allocation type wxLuaState can now attach to lua_States or wxLuaStateRefData wxLuaDebugEvent to use copy constructor for clone enum debugCommands and debugEvents to wxLuaDebugCommands/Events_Type Index: wxldtarg.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldtarg.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wxldtarg.cpp 25 Nov 2005 19:22:58 -0000 1.1 --- wxldtarg.cpp 26 Nov 2005 03:15:20 -0000 1.2 *************** *** 189,193 **** try { ! debugCommands debugCommand = (debugCommands) ReadByte(&m_clientSocket); switch(debugCommand) { --- 189,193 ---- try { ! wxLuaDebugCommands_Type debugCommand = (wxLuaDebugCommands_Type) ReadByte(&m_clientSocket); switch(debugCommand) { Index: dservice.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/dservice.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dservice.cpp 25 Nov 2005 19:45:37 -0000 1.3 --- dservice.cpp 26 Nov 2005 03:15:20 -0000 1.4 *************** *** 977,981 **** // Events from Debug Service int debuggeeEvent = m_debuggerSocket->ReadByte(); ! switch((debugEvents) debuggeeEvent) { case EVENT_DEBUG_BREAK: --- 977,981 ---- // Events from Debug Service int debuggeeEvent = m_debuggerSocket->ReadByte(); ! switch((wxLuaDebugEvents_Type) debuggeeEvent) { case EVENT_DEBUG_BREAK: Index: wxldserv.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldserv.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wxldserv.cpp 25 Nov 2005 19:22:58 -0000 1.1 --- wxldserv.cpp 26 Nov 2005 03:15:20 -0000 1.2 *************** *** 533,537 **** { int debugEvent = ReadByte(m_acceptedSocket); ! switch((debugEvents) debugEvent) { case EVENT_DEBUG_BREAK: --- 533,537 ---- { int debugEvent = ReadByte(m_acceptedSocket); ! switch((wxLuaDebugEvents_Type) debugEvent) { case EVENT_DEBUG_BREAK: |