From: John L. <jr...@us...> - 2006-12-13 06:57:57
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18568/wxLua/modules/wxluasocket/include Modified Files: wxldserv.h wxluasocket_bind.h Log Message: cleanup genwxbind.lua, better var names, builtin -> number or function cleanup wxlprint, wxlhtmlwin Index: wxldserv.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldserv.h,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** wxldserv.h 12 Dec 2006 01:23:40 -0000 1.28 --- wxldserv.h 13 Dec 2006 06:57:50 -0000 1.29 *************** *** 98,105 **** { public: ! wxLuaDebuggerStackDialog(wxWindow* parent, wxWindowID id, ! const wxString& title, ! const wxPoint& pos, const wxSize& size, ! wxLuaDebuggerBase* luaDebugger); virtual ~wxLuaDebuggerStackDialog(); --- 98,106 ---- { public: ! wxLuaDebuggerStackDialog(wxLuaDebuggerBase* luaDebugger, ! wxWindow* parent, wxWindowID id = wxID_ANY, ! const wxString& title = wxT("wxLua Stack"), ! const wxPoint& pos = wxDefaultPosition, ! const wxSize& size = wxSize(500, 300)); virtual ~wxLuaDebuggerStackDialog(); *************** *** 284,289 **** // Stop the debugger server, returns success bool StopServer(); ! // Start a debuggee client to be debugged by this, returns success ! bool StartClient(); virtual wxLuaSocketBase* GetSocketBase() { return m_acceptedSocket; } --- 285,291 ---- // Stop the debugger server, returns success bool StopServer(); ! // Start a debuggee client to be debugged by this, returns process ID ! // is > 0 on success. ! long StartClient(); virtual wxLuaSocketBase* GetSocketBase() { return m_acceptedSocket; } *************** *** 327,331 **** bool StopServer(); // Start a debuggee client to be debugged by this, returns success ! bool StartClient(); virtual wxLuaSocketBase* GetSocketBase() { return m_acceptedSocket; } --- 329,333 ---- bool StopServer(); // Start a debuggee client to be debugged by this, returns success ! long StartClient(); virtual wxLuaSocketBase* GetSocketBase() { return m_acceptedSocket; } Index: wxluasocket_bind.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxluasocket_bind.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** wxluasocket_bind.h 13 Dec 2006 00:27:57 -0000 1.8 --- wxluasocket_bind.h 13 Dec 2006 06:57:50 -0000 1.9 *************** *** 23,29 **** #include "wxlua/include/wxlbind.h" ! #if WXLUA_BINDING_VERSION > 1 # error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings." ! #endif //WXLUA_BINDING_VERSION > 1 // binding class --- 23,29 ---- #include "wxlua/include/wxlbind.h" ! #if WXLUA_BINDING_VERSION > 2 # error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings." ! #endif //WXLUA_BINDING_VERSION > 2 // binding class |