diff options
author | mae <[email protected]> | 2009-01-26 16:36:02 +0100 |
---|---|---|
committer | mae <[email protected]> | 2009-01-26 16:36:02 +0100 |
commit | ebcb9dce5af99e3148e5531f05d2fa31a0372217 (patch) | |
tree | 4b0ea7741e1ea51f960df5760f1cc21b5952ec64 /src/plugins/git/gitclient.cpp | |
parent | 1b345cfa0f96bf0b082c351bd91659a827705182 (diff) |
separate EM::setCurrentEditor and EM::activateEditor
Diffstat (limited to 'src/plugins/git/gitclient.cpp')
-rw-r--r-- | src/plugins/git/gitclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index e20ee11f965..5f7225e36d6 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -169,7 +169,7 @@ VCSBase::VCSBaseEditor outputEditor->createNew(m_msgWait); rc = VCSBase::VCSBaseEditor::getVcsBaseEditor(outputEditor); QTC_ASSERT(rc, return 0); - m_core->editorManager()->setCurrentEditor(outputEditor); + m_core->editorManager()->activateEditor(outputEditor); } else { // Create new, set wait message, set up with source and codec outputEditor = m_core->editorManager()->newFile(kind, &title, m_msgWait); |