summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-11-15 17:13:02 +0100
committerChristian Kandeler <christian.kandeler@nokia.com>2011-11-15 17:32:55 +0100
commit4c76e40617d22d3578bb95973b54b0e266591e7c (patch)
tree8b89776bde4cd291fd54db988ca5e79939ac191f /src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp
parentd9dde0d5e8eedde5b82c441700babc4f2a394ce4 (diff)
downloadqt-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.cpp2
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();
}