aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSami Shalayel <[email protected]>2024-04-05 11:04:22 +0200
committerSami Shalayel <[email protected]>2024-05-21 18:14:04 +0200
commitf5820f94f0a315f59612423e9fdb4c3fd2052f03 (patch)
treed99690c48d79fb663f41334c0059c0845d6b8312
parentbad81267afd1fc73f9b63252b5dbf28eed915165 (diff)
qmlls: fix typo in renaming error message
Fix the typo in the error message and add some quotes. Change-Id: Id1b2159befaffce1446e776454107dbcff9ee7d4 Reviewed-by: Fabian Kosmale <[email protected]>
-rw-r--r--src/qmlls/qqmllsutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmlls/qqmllsutils.cpp b/src/qmlls/qqmllsutils.cpp
index bc9f21d7b9..4fcce53595 100644
--- a/src/qmlls/qqmllsutils.cpp
+++ b/src/qmlls/qqmllsutils.cpp
@@ -1963,7 +1963,7 @@ std::optional<QQmlLSUtilsErrorMessage> QQmlLSUtils::checkNameForRename(
if (moduleOfDefinition != moduleOfCurrentItem) {
return QQmlLSUtilsErrorMessage{
0,
- u"Cannot rename items defined in the %1 module fromits usage in the %2 module."_s
+ u"Cannot rename items defined in the \"%1\" module from a usage in the \"%2\" module."_s
.arg(moduleOfDefinition, moduleOfCurrentItem),
};
}