summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/sshkeycreationdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/sshkeycreationdialog.cpp')
-rw-r--r--src/plugins/remotelinux/sshkeycreationdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/sshkeycreationdialog.cpp b/src/plugins/remotelinux/sshkeycreationdialog.cpp
index e0128d2a2a..16dcf9220d 100644
--- a/src/plugins/remotelinux/sshkeycreationdialog.cpp
+++ b/src/plugins/remotelinux/sshkeycreationdialog.cpp
@@ -109,7 +109,7 @@ void SshKeyCreationDialog::generateKeys()
}
const QString keyTypeString = QLatin1String(m_rsa->isChecked() ? "rsa": "ecdsa");
QApplication::setOverrideCursor(Qt::BusyCursor);
- QtcProcess keygen;
+ Process keygen;
const QStringList args{"-t", keyTypeString, "-b", m_comboBox->currentText(),
"-N", QString(), "-f", privateKeyFilePath().path()};
QString errorMsg;