From 708c62913330f7e4b2ba31a20edc75943161c679 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 24 Feb 2023 17:31:28 +0100 Subject: [PATCH] Utils: Use double quotes for emphasis in UI text Change-Id: I00b27ee40ba131ec6472b03ac7f23c93639a9cea Reviewed-by: Marcus Tillmanns --- src/libs/utils/filepath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/filepath.cpp b/src/libs/utils/filepath.cpp index db8008182f5..230dc251cbc 100644 --- a/src/libs/utils/filepath.cpp +++ b/src/libs/utils/filepath.cpp @@ -1732,7 +1732,7 @@ expected_str FilePath::localSource() const return *this; QTC_ASSERT(s_deviceHooks.localSource, - return make_unexpected(Tr::tr("No 'localSource' device hook set."))); + return make_unexpected(Tr::tr("No \"localSource\" device hook set."))); return s_deviceHooks.localSource(*this); }