From 353cc0e5f3d8f1789fd27521c52a3c4d61e5fd7e Mon Sep 17 00:00:00 2001 From: Ivan Donchevskii Date: Wed, 24 Oct 2018 10:44:21 +0200 Subject: [PATCH] Clang: Fix the completion fix-it wording Change-Id: Ifc3ab9946caf3716681a1bffd590f0780b796176 Reviewed-by: Leena Miettinen --- src/plugins/clangcodemodel/clangassistproposalitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/clangcodemodel/clangassistproposalitem.cpp b/src/plugins/clangcodemodel/clangassistproposalitem.cpp index 652dbb81ca2..6fcbed054f5 100644 --- a/src/plugins/clangcodemodel/clangassistproposalitem.cpp +++ b/src/plugins/clangcodemodel/clangassistproposalitem.cpp @@ -358,7 +358,7 @@ QString ClangAssistProposalItem::fixItText() const { const FixItContainer &fixIt = firstCompletionFixIts().first(); return QCoreApplication::translate("ClangCodeModel::ClangAssistProposalItem", - "Requires to correct \"%1\" to \"%2\"") + "Requires changing \"%1\" to \"%2\"") .arg(textReplacedByFixit(fixIt), fixIt.text.toString()); }