diff options
author | hjk <qtc-committer@nokia.com> | 2009-01-20 15:31:33 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-01-20 15:31:33 +0100 |
commit | 897c05f57c64d07c1361c7170495641ece42c7c3 (patch) | |
tree | 8ccf5b7874d25af2bc47a3fb6ea1cb63b93a6a72 /src/plugins/projectexplorer/currentprojectfind.cpp | |
parent | 67437acf498fe74baadd07a59a8180dca8314f43 (diff) | |
download | qt-creator-897c05f57c64d07c1361c7170495641ece42c7c3.tar.gz |
replace Core::ICore::instance()->pluginManager() by ExtensionSystem::PluginManager::instance()
Diffstat (limited to 'src/plugins/projectexplorer/currentprojectfind.cpp')
-rw-r--r-- | src/plugins/projectexplorer/currentprojectfind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/currentprojectfind.cpp b/src/plugins/projectexplorer/currentprojectfind.cpp index cf1d81c3bc..e453d0c6a4 100644 --- a/src/plugins/projectexplorer/currentprojectfind.cpp +++ b/src/plugins/projectexplorer/currentprojectfind.cpp @@ -47,8 +47,8 @@ using namespace ProjectExplorer; using namespace ProjectExplorer::Internal; using namespace TextEditor; -CurrentProjectFind::CurrentProjectFind(ProjectExplorerPlugin *plugin, Core::ICore *core, SearchResultWindow *resultWindow) - : BaseFileFind(core, resultWindow), +CurrentProjectFind::CurrentProjectFind(ProjectExplorerPlugin *plugin, SearchResultWindow *resultWindow) + : BaseFileFind(resultWindow), m_plugin(plugin), m_configWidget(0) { |