Add full stops to various error messages

Change-Id: Ic4e07c5063a2e42af643faa4a5acb8445b12d6a1
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Eike Ziller
2023-06-13 15:29:42 +02:00
parent 37433c1897
commit 33449bc880
4 changed files with 9 additions and 9 deletions

View File

@@ -551,7 +551,7 @@ void SymbolSupport::handleRenameResponse(Core::SearchResult *search,
if (error.has_value()) {
errorMessage = error->toString();
if (errorMessage.contains("Cannot rename symbol: new name is the same as the old name"))
errorMessage = Tr::tr("Start typing to see replacements"); // clangd optimization
errorMessage = Tr::tr("Start typing to see replacements."); // clangd optimization
else
m_client->log(*error);
}