From b96bb6172e736379b780ad72c8c4055b93d82da2 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 12 Mar 2014 10:41:18 +0100 Subject: [PATCH] Text editor: fix capitalization of a button text Change-Id: I90ac86eb411beb7a966e4ae5deedad76f6c86b6b Reviewed-by: Nikolai Kosjar --- src/plugins/texteditor/plaintexteditorfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/plaintexteditorfactory.cpp b/src/plugins/texteditor/plaintexteditorfactory.cpp index 4323de80c70..c8af5fbcf58 100644 --- a/src/plugins/texteditor/plaintexteditorfactory.cpp +++ b/src/plugins/texteditor/plaintexteditorfactory.cpp @@ -89,7 +89,7 @@ void PlainTextEditorFactory::updateEditorInfoBar(Core::IEditor *editor) tr("A highlight definition was not found for this file. " "Would you like to try to find one?"), Core::InfoBarEntry::GlobalSuppressionEnabled); - info.setCustomButtonInfo(tr("Show highlighter options..."), + info.setCustomButtonInfo(tr("Show Highlighter Options..."), textEditor, SLOT(acceptMissingSyntaxDefinitionInfo())); infoBar->addInfo(info); }