diff options
author | hjk <[email protected]> | 2014-01-13 16:17:34 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2014-01-14 07:43:00 +0100 |
commit | 4d96fa7aba7be35800d61d8bed89d3f6c3ef9329 (patch) | |
tree | c9b102981cf81023e1488224a24758af18aa064e /src/plugins/cvs/cvsplugin.cpp | |
parent | 8b854270a6c214479b2cdf302072a3e74fa854da (diff) |
Core: Merge Find and Locator into Core plugin
Change-Id: I7053310272235d854c9f409670ff52a10a7add8b
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: Orgad Shaneh <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r-- | src/plugins/cvs/cvsplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index 28a06acda81..9e85e9b7bfe 100644 --- a/src/plugins/cvs/cvsplugin.cpp +++ b/src/plugins/cvs/cvsplugin.cpp @@ -41,7 +41,6 @@ #include <vcsbase/basevcssubmiteditorfactory.h> #include <vcsbase/vcsbaseoutputwindow.h> #include <vcsbase/vcsbaseeditorparameterwidget.h> -#include <locator/commandlocator.h> #include <utils/synchronousprocess.h> #include <utils/parameteraction.h> #include <utils/qtcassert.h> @@ -56,6 +55,7 @@ #include <coreplugin/actionmanager/command.h> #include <coreplugin/id.h> #include <coreplugin/editormanager/editormanager.h> +#include <coreplugin/locator/commandlocator.h> #include <coreplugin/vcsmanager.h> #include <utils/stringutils.h> #include <utils/fileutils.h> @@ -251,7 +251,7 @@ bool CvsPlugin::initialize(const QStringList &arguments, QString *errorMessage) addAutoReleasedObject(new CheckoutWizard); const QString prefix = QLatin1String("cvs"); - m_commandLocator = new Locator::CommandLocator("CVS", prefix, prefix); + m_commandLocator = new Core::CommandLocator("CVS", prefix, prefix); addAutoReleasedObject(m_commandLocator); // Register actions |