aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxpackageinstaller.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 /src/plugins/remotelinux/remotelinuxpackageinstaller.h
parent303e67304e42cc419b735ca609104ad4ed386d54 (diff)
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/remotelinuxpackageinstaller.h')
-rw-r--r--src/plugins/remotelinux/remotelinuxpackageinstaller.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.h b/src/plugins/remotelinux/remotelinuxpackageinstaller.h
index ebdd0bf20d1..e00755898fa 100644
--- a/src/plugins/remotelinux/remotelinuxpackageinstaller.h
+++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.h
@@ -67,8 +67,8 @@ protected:
private slots:
void handleConnectionError();
void handleInstallationFinished(int exitStatus);
- void handleInstallerOutput(const QByteArray &output);
- void handleInstallerErrorOutput(const QByteArray &output);
+ void handleInstallerOutput();
+ void handleInstallerErrorOutput();
private:
virtual QString installCommandLine(const QString &packageFilePath) const = 0;