summaryrefslogtreecommitdiff
path: root/src/plugins/git
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-08-29 17:17:24 +0200
committerhjk <hjk121@nokiamail.com>2013-08-30 11:25:51 +0200
commiteb724f3772776849585be1417e90b1fb41a29698 (patch)
tree90709baa1d642b021cb81286cb34610db95d1ce8 /src/plugins/git
parent4a24df38a3a164c51f9cdddd566c9928a7482a0a (diff)
downloadqt-creator-eb724f3772776849585be1417e90b1fb41a29698.tar.gz
EditorManager: Use interface directly instead of going through ICore
In the majority of cases we were doing that anyways, having two ways is just needlessly confusing. Change-Id: Ied362a702c23beee528368d74df1f2aabe5807f8 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git')
-rw-r--r--src/plugins/git/gitplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp
index f9cdd9d3cd..f3e567e42b 100644
--- a/src/plugins/git/gitplugin.cpp
+++ b/src/plugins/git/gitplugin.cpp
@@ -1053,7 +1053,7 @@ void GitPlugin::submitCurrentLog()
{
// Close the submit editor
m_submitActionTriggered = true;
- Core::ICore::editorManager()->closeEditor();
+ Core::EditorManager::closeEditor();
}
bool GitPlugin::submitEditorAboutToClose()