forked from qt-creator/qt-creator
SshRemoteProcessRunner: Unify API
Make the API more similar to QtcProcess API. Drop process prefix for getters. Change-Id: I21b99bb5b11956d923c0e526c08bbea9686e5c95 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -83,8 +83,8 @@ void SshKeyDeployer::handleConnectionFailure()
|
||||
|
||||
void SshKeyDeployer::handleKeyUploadFinished()
|
||||
{
|
||||
const int exitCode = d->deployProcess.processExitCode();
|
||||
const QString errorMsg = d->deployProcess.processErrorString();
|
||||
const int exitCode = d->deployProcess.exitCode();
|
||||
const QString errorMsg = d->deployProcess.errorString();
|
||||
cleanup();
|
||||
if (errorMsg.isEmpty() && exitCode == 0) {
|
||||
emit finishedSuccessfully();
|
||||
|
||||
Reference in New Issue
Block a user