forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user