aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2019-06-25 08:56:25 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2019-06-25 11:36:40 +0000
commit07ba637433db227774fdabdc3a8f48e09a9fb3a9 (patch)
tree0adb300bf7513edf395ddd7b3c64550007576b7a /src/plugins/remotelinux
parentd1d7a488d95311e6a39f411846e7a3f995c8dab7 (diff)
Remote Linux: Use double quotes for emphasis in UI text
Change-Id: I2195cfe93d3ca77e8ba4d33f73164680ec17c066 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux')
-rw-r--r--src/plugins/remotelinux/makeinstallstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp
index 0b1fa704add..c9d3578b796 100644
--- a/src/plugins/remotelinux/makeinstallstep.cpp
+++ b/src/plugins/remotelinux/makeinstallstep.cpp
@@ -118,13 +118,13 @@ bool MakeInstallStep::init()
}
QDir rootDir(rootDirPath);
if (cleanInstallRoot() && !rootDir.removeRecursively()) {
- emit addTask(Task(Task::Error, tr("The install root '%1' could not be cleaned.")
+ emit addTask(Task(Task::Error, tr("The install root \"%1\" could not be cleaned.")
.arg(installRoot().toUserOutput()),
FilePath(), -1, Constants::TASK_CATEGORY_BUILDSYSTEM));
return false;
}
if (!rootDir.exists() && !QDir::root().mkpath(rootDirPath)) {
- emit addTask(Task(Task::Error, tr("The install root '%1' could not be created.")
+ emit addTask(Task(Task::Error, tr("The install root \"%1\" could not be created.")
.arg(installRoot().toUserOutput()),
FilePath(), -1, Constants::TASK_CATEGORY_BUILDSYSTEM));
return false;