diff options
author | hjk <qtc-committer@nokia.com> | 2012-05-08 09:43:14 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-05-11 13:51:14 +0200 |
commit | 21bf0046c3fcfc0637c3e5b75007523b9d944555 (patch) | |
tree | d220b480c1b7a97154b80f4485a38f58339a2096 /src/plugins/cpptools/cpptoolsplugin.cpp | |
parent | 2ef2532bf688387e91810bbd47f7438e78d3b49d (diff) | |
download | qt-creator-21bf0046c3fcfc0637c3e5b75007523b9d944555.tar.gz |
editormanager: simplify use of interface
Less code on the user side, same meaning.
Change-Id: I14e54a5d2ed8e024a51cce74eaf7c8419ad544be
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index f75a0207a4..f33f40e5bf 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -159,11 +159,10 @@ ExtensionSystem::IPlugin::ShutdownFlag CppToolsPlugin::aboutToShutdown() void CppToolsPlugin::switchHeaderSource() { - Core::EditorManager *editorManager = Core::EditorManager::instance(); - Core::IEditor *editor = editorManager->currentEditor(); + Core::IEditor *editor = Core::EditorManager::currentEditor(); QString otherFile = correspondingHeaderOrSource(editor->document()->fileName()); if (!otherFile.isEmpty()) - editorManager->openEditor(otherFile); + Core::EditorManager::openEditor(otherFile); } static QStringList findFilesInProject(const QString &name, |