diff --git a/src/plugins/quickopen/QuickOpen.pluginspec b/src/plugins/quickopen/QuickOpen.pluginspec index 17ac77d3db960228c69e8c2f2de97695708fda43..c28c03c6072265d83fabae595dc93833922985cf 100644 --- a/src/plugins/quickopen/QuickOpen.pluginspec +++ b/src/plugins/quickopen/QuickOpen.pluginspec @@ -16,7 +16,7 @@ General Public License version 2.1 as published by the Free Software Foundation. Please review the following information to ensure the GNU Lesser General Public License version 2.1 requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.</license> - <description>Provides the QuickOpen widget and the hooks for QuickOpen filter implementations.</description> + <description>Provides the Locator widget and the hooks for QuickOpen filter implementations.</description> <url>http://www.qtsoftware.com</url> <dependencyList> <dependency name="Core" version="1.2.80"/> diff --git a/src/plugins/quickopen/quickopenplugin.cpp b/src/plugins/quickopen/quickopenplugin.cpp index df5b300e649d4640e1cd4f3973cff1ab1c9a330a..51a8b5e21125e4db5193f1ac24f16b5c46d79f25 100644 --- a/src/plugins/quickopen/quickopenplugin.cpp +++ b/src/plugins/quickopen/quickopenplugin.cpp @@ -103,7 +103,7 @@ bool QuickOpenPlugin::initialize(const QStringList &, QString *) view->setDefaultPosition(Core::IView::First); addAutoReleasedObject(view); - const QString actionId = QLatin1String("QtCreator.QuickOpen"); + const QString actionId = QLatin1String("QtCreator.Locate"); QAction *action = new QAction(m_quickOpenToolWindow->windowIcon(), m_quickOpenToolWindow->windowTitle(), this); Core::Command *cmd = core->actionManager()->registerAction(action, actionId, QList<int>() << Core::Constants::C_GLOBAL_ID); cmd->setDefaultKeySequence(QKeySequence("Ctrl+K"));