From 15543d5957ffa2c493f13c918b4b281bd25d7f43 Mon Sep 17 00:00:00 2001 From: Takumi ASAKI Date: Thu, 28 Apr 2016 18:31:57 +0900 Subject: [PATCH] TextEditor: Add missing message Change-Id: I208e53aac3f897789fafdce0d71bcb40e0e8664c Reviewed-by: David Schulz --- src/plugins/texteditor/texteditoractionhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp index 45815477bb5..4e6213bca67 100644 --- a/src/plugins/texteditor/texteditoractionhandler.cpp +++ b/src/plugins/texteditor/texteditoractionhandler.cpp @@ -313,7 +313,7 @@ void TextEditorActionHandlerPrivate::createActions() [this] (TextEditorWidget *w) { w->insertLineBelow(); }, true, tr("Insert Line Below Current Line"), QKeySequence(tr("Ctrl+Return"))); m_switchUtf8bomAction = registerAction(SWITCH_UTF8BOM, - [this] (TextEditorWidget *w) { w->switchUtf8bom(); }, true); + [this] (TextEditorWidget *w) { w->switchUtf8bom(); }, true, tr("Toggle UTF-8 BOM")); m_indentAction = registerAction(INDENT, [this] (TextEditorWidget *w) { w->indent(); }, true, tr("Indent")); m_unindentAction = registerAction(UNINDENT,