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/remotelinux/remotelinuxcustomcommanddeployservice.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/remotelinux/remotelinuxcustomcommanddeployservice.cpp')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp index 9f393b8924..d489d55030 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp @@ -115,7 +115,7 @@ void RemoteLinuxCustomCommandDeployService::stopDeployment() QTC_ASSERT(d->state == Running, return); disconnect(d->runner, 0, this, 0); - d->runner->process()->closeChannel(); + d->runner->process()->close(); d->state = Inactive; handleDeploymentDone(); } |