TextEditor: Add missing message

Change-Id: I208e53aac3f897789fafdce0d71bcb40e0e8664c
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
Takumi ASAKI
2016-04-28 18:31:57 +09:00
committed by Takumi ASAKI
parent d59c17b098
commit 15543d5957

View File

@@ -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,