diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2012-06-08 09:42:32 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-06-08 10:15:43 +0200 |
commit | 79de09f2663f818bb07c24752e6520b19b28e6ec (patch) | |
tree | 4ee8e676e73646f42476f4f01df3756997836f48 /src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h | |
parent | 303e67304e42cc419b735ca609104ad4ed386d54 (diff) | |
download | qt-creator-79de09f2663f818bb07c24752e6520b19b28e6ec.tar.gz |
SSH: Streamline SshRemoteProcessRunner's output handling.
Make it just like SshRemoteProcess (and QProcess). The current
implementation annoyingly forces client code to establish additional
signal/slot connections, even if they only want to evaluate the output
at the end.
Change-Id: Id8c30dd156574d7d26d848d8e0705856a16d3747
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h index 6a31d19172..2097b96b41 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.h @@ -59,8 +59,8 @@ protected: void stopDeployment(); private slots: - void handleStdout(const QByteArray &output); - void handleStderr(const QByteArray &output); + void handleStdout(); + void handleStderr(); void handleProcessClosed(int exitStatus); private: |