From a1b5a61b6ef301b22382be11d734ea5cff5455cf Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Thu, 17 Jul 2014 15:06:06 +0200 Subject: [PATCH] Find: remove unused text "Go to Current Document Find" Because it would have needed changing. Change-Id: I58ff194a296cce1fd6096f3cc2ea39854435e7c1 Reviewed-by: Eike Ziller --- src/plugins/coreplugin/find/findtoolbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/find/findtoolbar.cpp b/src/plugins/coreplugin/find/findtoolbar.cpp index a449ec0e399..78ee72d147f 100644 --- a/src/plugins/coreplugin/find/findtoolbar.cpp +++ b/src/plugins/coreplugin/find/findtoolbar.cpp @@ -147,7 +147,7 @@ FindToolBar::FindToolBar(FindPlugin *plugin, CurrentDocumentFind *currentDocumen m_ui.advancedButton->setDefaultAction(Core::ActionManager::command(Constants::ADVANCED_FIND)->action()); - m_goToCurrentFindAction = new QAction(tr("Go to Current Document Find"), this); + m_goToCurrentFindAction = new QAction(this); Core::ActionManager::registerAction(m_goToCurrentFindAction, Constants::S_RETURNTOEDITOR, Context(Constants::C_FINDTOOLBAR)); connect(m_goToCurrentFindAction, SIGNAL(triggered()), this, SLOT(setFocusToCurrentFindSupport()));