diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-02-28 14:11:49 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-02-28 14:21:47 +0000 |
commit | 7b5dfcd6cda13b16c213891ddcee133fbd1126cc (patch) | |
tree | 1fd5a4ecefe13355f7ed5c8280cc18d453c13fc4 /src/libs/ssh/sshremoteprocessrunner.h | |
parent | fc3b9b5ab3da03269f8865187384321bc72a01fb (diff) | |
download | qt-creator-7b5dfcd6cda13b16c213891ddcee133fbd1126cc.tar.gz |
SshRemoteProcess: Get rid of error arg from done() signal
Prepare for signal rename done() -> finished().
Change-Id: I81a7bd0a4826ce6200f4af47ba5868ceedb42206
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/libs/ssh/sshremoteprocessrunner.h')
-rw-r--r-- | src/libs/ssh/sshremoteprocessrunner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/ssh/sshremoteprocessrunner.h b/src/libs/ssh/sshremoteprocessrunner.h index 43e8bda6db..0a1af87e5b 100644 --- a/src/libs/ssh/sshremoteprocessrunner.h +++ b/src/libs/ssh/sshremoteprocessrunner.h @@ -64,7 +64,7 @@ private: void handleConnectionError(); void handleDisconnected(); void handleProcessStarted(); - void handleProcessFinished(const QString &error); + void handleProcessFinished(); void runInternal(const QString &command, const QSsh::SshConnectionParameters &sshParams); void setState(int newState); |