forked from qt-creator/qt-creator
VCS: Clean up submit editor handling
It was not possible to simultaneously open two commit editors for different version control systems, also there was no reason to scan all open editors for the submit editor, since the plugins can just remember the editor that they opened. Change-Id: I1bea6ece3cd6faa1ecc0566bdd6f5fb10c816963 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -112,7 +112,7 @@ static const VcsBase::VcsBaseSubmitEditorParameters submitEditorParameters = {
|
||||
BazaarPlugin *BazaarPlugin::m_instance = 0;
|
||||
|
||||
BazaarPlugin::BazaarPlugin()
|
||||
: VcsBase::VcsBasePlugin(Constants::COMMIT_ID),
|
||||
: VcsBase::VcsBasePlugin(),
|
||||
m_optionsPage(0),
|
||||
m_client(0),
|
||||
m_commandLocator(0),
|
||||
@@ -517,7 +517,7 @@ void BazaarPlugin::createSubmitEditorActions()
|
||||
|
||||
void BazaarPlugin::commit()
|
||||
{
|
||||
if (VcsBase::VcsBaseSubmitEditor::raiseSubmitEditor())
|
||||
if (raiseSubmitEditor())
|
||||
return;
|
||||
|
||||
const VcsBase::VcsBasePluginState state = currentState();
|
||||
@@ -566,6 +566,7 @@ void BazaarPlugin::showCommitWidget(const QList<VcsBase::VcsBaseClient::StatusIt
|
||||
outputWindow->appendError(tr("Unable to create a commit editor."));
|
||||
return;
|
||||
}
|
||||
setSubmitEditor(commitEditor);
|
||||
|
||||
commitEditor->registerActions(m_editorUndo, m_editorRedo, m_editorCommit, m_editorDiff);
|
||||
connect(commitEditor, SIGNAL(diffSelectedFiles(QStringList)),
|
||||
@@ -653,12 +654,12 @@ void BazaarPlugin::commitFromEditor()
|
||||
Core::ICore::editorManager()->closeEditor();
|
||||
}
|
||||
|
||||
bool BazaarPlugin::submitEditorAboutToClose(VcsBase::VcsBaseSubmitEditor *submitEditor)
|
||||
bool BazaarPlugin::submitEditorAboutToClose()
|
||||
{
|
||||
Core::IDocument *editorDocument = submitEditor->document();
|
||||
const CommitEditor *commitEditor = qobject_cast<const CommitEditor *>(submitEditor);
|
||||
if (!editorDocument || !commitEditor)
|
||||
return true;
|
||||
CommitEditor *commitEditor = qobject_cast<CommitEditor *>(submitEditor());
|
||||
QTC_ASSERT(commitEditor, return true);
|
||||
Core::IDocument *editorDocument = commitEditor->document();
|
||||
QTC_ASSERT(editorDocument, return true);
|
||||
|
||||
bool dummyPrompt = m_bazaarSettings.boolValue(BazaarSettings::promptOnSubmitKey);
|
||||
const VcsBase::VcsBaseSubmitEditor::PromptSubmitResult response =
|
||||
@@ -690,7 +691,7 @@ bool BazaarPlugin::submitEditorAboutToClose(VcsBase::VcsBaseSubmitEditor *submit
|
||||
*iFile = parts.last();
|
||||
}
|
||||
|
||||
const BazaarCommitWidget *commitWidget = commitEditor->commitWidget();
|
||||
BazaarCommitWidget *commitWidget = commitEditor->commitWidget();
|
||||
QStringList extraOptions;
|
||||
// Author
|
||||
if (!commitWidget->committer().isEmpty())
|
||||
|
Reference in New Issue
Block a user