From: John L. <jr...@us...> - 2007-05-23 02:48:35
|
Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv5256/wxLua/modules/wxluasocket/include Modified Files: wxldserv.h wxldtarg.h Log Message: Make the stack dialog listctrl a little nicer with bold fonts clean up variable names Index: wxldserv.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldserv.h,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** wxldserv.h 22 May 2007 03:27:54 -0000 1.33 --- wxldserv.h 23 May 2007 02:48:31 -0000 1.34 *************** *** 319,323 **** wxLuaSocket *m_acceptedSocket; wxLuaDebuggerCServer::LuaThread *m_pThread; ! bool m_fShutdown; private: --- 319,323 ---- wxLuaSocket *m_acceptedSocket; wxLuaDebuggerCServer::LuaThread *m_pThread; ! bool m_shutdown; private: *************** *** 390,411 **** void SetDebugData(long nReference, const wxLuaDebugData& pDebugData = wxLuaDebugData()); ! int GetLineNumber() const { return m_lineNumber;} wxString GetFileName() const { return m_fileName; } wxString GetMessage() const { return m_strMessage; } // check HasMessage ! bool HasMessage() const { return m_fHasMessage; } ! long GetReference() const { return m_nReference; } // lua reference wxLuaDebugData GetDebugData() const { return m_debugData; } ! bool GetEnabledFlag() const { return m_fEnabledFlag; } protected: virtual wxEvent* Clone() const { return new wxLuaDebuggerEvent(*this); } ! int m_lineNumber; wxString m_fileName; wxString m_strMessage; ! bool m_fHasMessage; ! long m_nReference; wxLuaDebugData m_debugData; ! bool m_fEnabledFlag; private: --- 390,411 ---- void SetDebugData(long nReference, const wxLuaDebugData& pDebugData = wxLuaDebugData()); ! int GetLineNumber() const { return m_line_number;} wxString GetFileName() const { return m_fileName; } wxString GetMessage() const { return m_strMessage; } // check HasMessage ! bool HasMessage() const { return m_has_message; } ! long GetReference() const { return m_lua_ref; } // lua reference wxLuaDebugData GetDebugData() const { return m_debugData; } ! bool GetEnabledFlag() const { return m_enabled_flag; } protected: virtual wxEvent* Clone() const { return new wxLuaDebuggerEvent(*this); } ! int m_line_number; wxString m_fileName; wxString m_strMessage; ! bool m_has_message; ! long m_lua_ref; wxLuaDebugData m_debugData; ! bool m_enabled_flag; private: Index: wxldtarg.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldtarg.h,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** wxldtarg.h 19 May 2007 02:05:47 -0000 1.22 --- wxldtarg.h 23 May 2007 02:48:31 -0000 1.23 *************** *** 63,67 **** wxLuaState m_wxlState; ! int m_portNumber; wxString m_serverName; wxSortedArrayString m_breakPointList; --- 63,67 ---- wxLuaState m_wxlState; ! int m_port_number; wxString m_serverName; wxSortedArrayString m_breakPointList; |