diff options
| author | Sami Shalayel <[email protected]> | 2024-04-05 11:04:22 +0200 |
|---|---|---|
| committer | Sami Shalayel <[email protected]> | 2024-05-21 18:14:04 +0200 |
| commit | f5820f94f0a315f59612423e9fdb4c3fd2052f03 (patch) | |
| tree | d99690c48d79fb663f41334c0059c0845d6b8312 | |
| parent | bad81267afd1fc73f9b63252b5dbf28eed915165 (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.cpp | 2 |
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), }; } |
