summaryrefslogtreecommitdiff
path: root/src/plugins/quickopen/quickopentoolwindow.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-01-20 11:52:04 +0100
committerhjk <qtc-committer@nokia.com>2009-01-20 11:52:04 +0100
commit113b81e9dbc67dab5252eb9b6a8aaa57efda3de0 (patch)
tree7a80819280d648a2cdd1eecf1cf645d6bbcc64d5 /src/plugins/quickopen/quickopentoolwindow.cpp
parentd1dac15cc57549ac7da6c6007685e5bacdbf1828 (diff)
downloadqt-creator-113b81e9dbc67dab5252eb9b6a8aaa57efda3de0.tar.gz
replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() by Core::ICore::instance()
Diffstat (limited to 'src/plugins/quickopen/quickopentoolwindow.cpp')
-rw-r--r--src/plugins/quickopen/quickopentoolwindow.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/quickopen/quickopentoolwindow.cpp b/src/plugins/quickopen/quickopentoolwindow.cpp
index 40cbeb7edc..d769313b58 100644
--- a/src/plugins/quickopen/quickopentoolwindow.cpp
+++ b/src/plugins/quickopen/quickopentoolwindow.cpp
@@ -490,7 +490,6 @@ void QuickOpenToolWindow::showEvent(QShowEvent *event)
void QuickOpenToolWindow::showConfigureDialog()
{
- ExtensionSystem::PluginManager::instance()
- ->getObject<Core::ICore>()->showOptionsDialog(Constants::QUICKOPEN_CATEGORY,
+ Core::ICore::instance()->showOptionsDialog(Constants::QUICKOPEN_CATEGORY,
Constants::FILTER_OPTIONS_PAGE);
}