diff options
Diffstat (limited to 'src/plugins/remotelinux/sshkeydeployer.cpp')
-rw-r--r-- | src/plugins/remotelinux/sshkeydeployer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/sshkeydeployer.cpp b/src/plugins/remotelinux/sshkeydeployer.cpp index 9d5435ed4bf..89fc2b4f07b 100644 --- a/src/plugins/remotelinux/sshkeydeployer.cpp +++ b/src/plugins/remotelinux/sshkeydeployer.cpp @@ -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(); |