From 07ba637433db227774fdabdc3a8f48e09a9fb3a9 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Tue, 25 Jun 2019 08:56:25 +0200 Subject: Remote Linux: Use double quotes for emphasis in UI text Change-Id: I2195cfe93d3ca77e8ba4d33f73164680ec17c066 Reviewed-by: Christian Kandeler --- src/plugins/remotelinux/makeinstallstep.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp index 0b1fa704ad..c9d3578b79 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; -- cgit v1.2.1