From: John L. <jr...@us...> - 2007-02-22 20:33:14
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10499/wxLua/modules/wxluasocket/src Modified Files: wxluasocket.cpp Log Message: change wxLUA_USE_wxJoystick | wxUSE_JOYSTICK to & Index: wxluasocket.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** wxluasocket.cpp 22 Feb 2007 00:01:36 -0000 1.15 --- wxluasocket.cpp 22 Feb 2007 20:33:10 -0000 1.16 *************** *** 332,336 **** returns = wxLuaDebuggerServer::GetProgramName(); // push the result string ! lua_pushstring(L, wx2lua(returns) ); return 1; --- 332,336 ---- returns = wxLuaDebuggerServer::GetProgramName(); // push the result string ! wxlState.lua_PushString(returns); return 1; *************** *** 345,349 **** returns = wxLuaDebuggerServer::GetNetworkName(); // push the result string ! lua_pushstring(L, wx2lua(returns) ); return 1; --- 345,349 ---- returns = wxLuaDebuggerServer::GetNetworkName(); // push the result string ! wxlState.lua_PushString(returns); return 1; *************** *** 452,456 **** returns = self->GetFileName(); // push the result string ! lua_pushstring(L, wx2lua(returns) ); return 1; --- 452,456 ---- returns = self->GetFileName(); // push the result string ! wxlState.lua_PushString(returns); return 1; *************** *** 467,471 **** returns = self->GetMessage(); // push the result string ! lua_pushstring(L, wx2lua(returns) ); return 1; --- 467,471 ---- returns = self->GetMessage(); // push the result string ! wxlState.lua_PushString(returns); return 1; |