diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2011-11-15 17:13:02 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2011-11-15 17:32:55 +0100 |
commit | 4c76e40617d22d3578bb95973b54b0e266591e7c (patch) | |
tree | 8b89776bde4cd291fd54db988ca5e79939ac191f /src/plugins/debugger/gdb/remotegdbprocess.cpp | |
parent | d9dde0d5e8eedde5b82c441700babc4f2a394ce4 (diff) | |
download | qt-creator-4c76e40617d22d3578bb95973b54b0e266591e7c.tar.gz |
SSH: Derive SshRemoteProcess from QIODevice.
Now it looks even more like QProcess. Things like process channels are
still missing.
Change-Id: I3f30cd00ed4a054d02e83add9a6f4162b48f8345
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/debugger/gdb/remotegdbprocess.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/remotegdbprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/remotegdbprocess.cpp b/src/plugins/debugger/gdb/remotegdbprocess.cpp index 80a1dd5837..e9bb37aefe 100644 --- a/src/plugins/debugger/gdb/remotegdbprocess.cpp +++ b/src/plugins/debugger/gdb/remotegdbprocess.cpp @@ -341,7 +341,7 @@ void RemoteGdbProcess::sendInput(const QByteArray &data) if (!isdigit(data.at(pos))) break; m_lastSeqNr = data.left(pos); - m_gdbProc->sendInput(data); + m_gdbProc->write(data); } void RemoteGdbProcess::handleAppOutput() |