summaryrefslogtreecommitdiff
path: root/tests/manual/ssh/remoteprocess/remoteprocesstest.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-06-08 09:42:32 +0200
committerhjk <qthjk@ovi.com>2012-06-08 10:15:43 +0200
commit79de09f2663f818bb07c24752e6520b19b28e6ec (patch)
tree4ee8e676e73646f42476f4f01df3756997836f48 /tests/manual/ssh/remoteprocess/remoteprocesstest.h
parent303e67304e42cc419b735ca609104ad4ed386d54 (diff)
downloadqt-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 'tests/manual/ssh/remoteprocess/remoteprocesstest.h')
-rw-r--r--tests/manual/ssh/remoteprocess/remoteprocesstest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.h b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
index 73dd633e1a..3aef059272 100644
--- a/tests/manual/ssh/remoteprocess/remoteprocesstest.h
+++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
@@ -51,8 +51,8 @@ public:
private slots:
void handleConnectionError();
void handleProcessStarted();
- void handleProcessStdout(const QByteArray &output);
- void handleProcessStderr(const QByteArray &output);
+ void handleProcessStdout();
+ void handleProcessStderr();
void handleProcessClosed(int exitStatus);
void handleTimeout();
void handleReadyRead();