forked from qt-creator/qt-creator
Clang: tr()-Fixes
Do not use QObject::tr(). Change-Id: I369eb9a57cc0d37a16fe0c11d766f22405a9eef7 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
committed by
Nikolai Kosjar
parent
fb9ab99c47
commit
5f45ed1c7b
@@ -214,7 +214,7 @@ QTextCursor cursorAtLastPositionOfLine(QTextDocument *textDocument, int lineNumb
|
|||||||
|
|
||||||
QString tooltipForFixItAvailableMarker()
|
QString tooltipForFixItAvailableMarker()
|
||||||
{
|
{
|
||||||
QString text = QObject::tr("Inspect available fixits");
|
QString text = QCoreApplication::translate("ClangCodeModel::Internal::ClangDiagnosticManager", "Inspect available fixits");
|
||||||
|
|
||||||
Core::Command *command = Core::ActionManager::command(TextEditor::Constants::QUICKFIX_THIS);
|
Core::Command *command = Core::ActionManager::command(TextEditor::Constants::QUICKFIX_THIS);
|
||||||
if (command)
|
if (command)
|
||||||
|
|||||||
Reference in New Issue
Block a user