diff options
author | Christian Kandeler <[email protected]> | 2014-04-17 14:09:47 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2014-04-22 10:06:40 +0200 |
commit | eccc1198d6d49707987ab3846da084e38edaf7c4 (patch) | |
tree | c4056ac7e0dfd26bc5aff3ceaed6e9fb1ec5b559 /src/libs/ssh/sshkeycreationdialog.cpp | |
parent | c20f40e12e0b6c5c85d0edfa349ab25b5472f06c (diff) |
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56
Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/libs/ssh/sshkeycreationdialog.cpp')
-rw-r--r-- | src/libs/ssh/sshkeycreationdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/ssh/sshkeycreationdialog.cpp b/src/libs/ssh/sshkeycreationdialog.cpp index 3630aa3edbc..0c5d3625250 100644 --- a/src/libs/ssh/sshkeycreationdialog.cpp +++ b/src/libs/ssh/sshkeycreationdialog.cpp @@ -115,7 +115,7 @@ void SshKeyCreationDialog::saveKeys() const QString parentDir = QFileInfo(privateKeyFilePath()).dir().path(); if (!QDir::root().mkpath(parentDir)) { QMessageBox::critical(this, tr("Cannot Save Key File"), - tr("Failed to create directory: '%1'.").arg(parentDir)); + tr("Failed to create directory: \"%1\".").arg(parentDir)); return; } |