Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28499/wxLua/modules/wxluasocket/src
Modified Files:
wxldtarg.cpp
Log Message:
Fix ungcobject() in Lua, compilation fix.
Switch to using wxConvCurrent for lua2wx and wx2lua
ifdefed using WXLUA_USE_WXSTR_CONVCURRENT
Allow Continue to work in the wxLuaDebugTarget (thanks to andre arpin)
Index: wxldtarg.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxldtarg.cpp,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** wxldtarg.cpp 15 Jan 2008 01:04:04 -0000 1.45
--- wxldtarg.cpp 26 Mar 2008 05:01:34 -0000 1.46
***************
*** 260,263 ****
--- 260,264 ----
case wxLUASOCKET_DEBUGGER_CMD_DEBUG_CONTINUE:
{
+ m_forceBreak = false;
ret = Continue();
break;
|