From: John L. <jr...@us...> - 2006-09-15 00:14:54
|
Update of /cvsroot/wxlua/wxLua/apps/wxluaedit/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24638/wxLua/apps/wxluaedit/src Modified Files: wxluaedit.cpp Log Message: update for debug socket changes Index: wxluaedit.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluaedit/src/wxluaedit.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** wxluaedit.cpp 7 Sep 2006 04:20:54 -0000 1.22 --- wxluaedit.cpp 15 Sep 2006 00:14:51 -0000 1.23 *************** *** 85,91 **** void OnLua(wxLuaEvent &event); ! void OnDebugStackEnum(wxLuaDebugEvent &event); ! void OnDebugTableEnum(wxLuaDebugEvent &event); ! void OnDebugStackEntryEnum(wxLuaDebugEvent &event); void DisplayError(const wxString &strError) const; --- 85,91 ---- void OnLua(wxLuaEvent &event); ! void OnDebugStackEnum(wxLuaDebuggerEvent &event); ! void OnDebugTableEnum(wxLuaDebuggerEvent &event); ! void OnDebugStackEntryEnum(wxLuaDebuggerEvent &event); void DisplayError(const wxString &strError) const; *************** *** 155,161 **** EVT_LUA_DEBUG_HOOK (ID_WXLUASTATE_DEBUG, wxLuaEditorApp::OnLua) ! EVT_WXLUA_DEBUG_STACK_ENUM( wxLuaEditorApp::OnDebugStackEnum) ! EVT_WXLUA_DEBUG_STACK_ENTRY_ENUM(wxLuaEditorApp::OnDebugStackEntryEnum) ! EVT_WXLUA_DEBUG_TABLE_ENUM( wxLuaEditorApp::OnDebugTableEnum) END_EVENT_TABLE() --- 155,161 ---- EVT_LUA_DEBUG_HOOK (ID_WXLUASTATE_DEBUG, wxLuaEditorApp::OnLua) ! EVT_WXLUA_DEBUGGER_STACK_ENUM( wxLuaEditorApp::OnDebugStackEnum) ! EVT_WXLUA_DEBUGGER_STACK_ENTRY_ENUM(wxLuaEditorApp::OnDebugStackEntryEnum) ! EVT_WXLUA_DEBUGGER_TABLE_ENUM( wxLuaEditorApp::OnDebugTableEnum) END_EVENT_TABLE() *************** *** 172,177 **** #endif // defined(__WXMSW__) && wxCHECK_VERSION(2, 3, 3) ! wxLuaDebugServer::SetProgramName(argv[0]); ! wxLuaDebugServer::SetNetworkName(wxGetHostName()); wxInitAllImageHandlers(); --- 172,177 ---- #endif // defined(__WXMSW__) && wxCHECK_VERSION(2, 3, 3) ! wxLuaDebuggerServer::SetProgramName(argv[0]); ! wxLuaDebuggerServer::SetNetworkName(wxGetHostName()); wxInitAllImageHandlers(); *************** *** 374,378 **** } ! void wxLuaEditorApp::OnDebugStackEnum(wxLuaDebugEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) --- 374,378 ---- } ! void wxLuaEditorApp::OnDebugStackEnum(wxLuaDebuggerEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) *************** *** 382,386 **** } ! void wxLuaEditorApp::OnDebugStackEntryEnum(wxLuaDebugEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) --- 382,386 ---- } ! void wxLuaEditorApp::OnDebugStackEntryEnum(wxLuaDebuggerEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) *************** *** 390,394 **** } ! void wxLuaEditorApp::OnDebugTableEnum(wxLuaDebugEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) --- 390,394 ---- } ! void wxLuaEditorApp::OnDebugTableEnum(wxLuaDebuggerEvent &event) { if (wxLuaHandler::GetHandler().GetStackDialog() != NULL) |