Update of /cvsroot/wxlua/wxLua/samples
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10846/wxLua/samples
Modified Files:
editor.wx.lua
Log Message:
add wxSocket implementation for wxLuaSockets... ifdefed off since it seems very slow and doesn't always connect
Index: editor.wx.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/samples/editor.wx.lua,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** editor.wx.lua 3 Oct 2006 05:12:46 -0000 1.29
--- editor.wx.lua 4 Oct 2006 05:55:03 -0000 1.30
***************
*** 1556,1563 ****
local editorText = editor:GetText()
local filePath = MakeDebugFileName(editor, document.filePath)
! debugServer:Run(filePath, editorText)
DownloadBreakpoints(editor, filePath)
end
! ok = debugServer:Step()
fIsConnected = ok
fIsRunning = ok
--- 1556,1565 ----
local editorText = editor:GetText()
local filePath = MakeDebugFileName(editor, document.filePath)
! ok = debugServer:Run(filePath, editorText)
DownloadBreakpoints(editor, filePath)
end
! if ok then
! ok = debugServer:Step()
! end
fIsConnected = ok
fIsRunning = ok
|