diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2013-10-11 16:16:48 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2013-10-11 16:40:56 +0200 |
commit | b034b0b95505d39dcf870fe244e3dcd1598b5daa (patch) | |
tree | 0166c6de83e7f472d070a7fb95af38854aa947b1 /src/plugins/bazaar/bazaarplugin.cpp | |
parent | dba595fdea1152fafb8291ed82df9ce2db825650 (diff) | |
download | qt-creator-b034b0b95505d39dcf870fe244e3dcd1598b5daa.tar.gz |
DVCS: Never prompt before committing
Commit is local. There's no reason to prompt.
Change-Id: I3aed5ad4931bc49c62d52f906100273739f4af89
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/bazaar/bazaarplugin.cpp')
-rw-r--r-- | src/plugins/bazaar/bazaarplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bazaar/bazaarplugin.cpp b/src/plugins/bazaar/bazaarplugin.cpp index 6253dad0b4..47045f8eb6 100644 --- a/src/plugins/bazaar/bazaarplugin.cpp +++ b/src/plugins/bazaar/bazaarplugin.cpp @@ -647,7 +647,7 @@ bool BazaarPlugin::submitEditorAboutToClose() Core::IDocument *editorDocument = commitEditor->document(); QTC_ASSERT(editorDocument, return true); - bool dummyPrompt = m_bazaarSettings.boolValue(BazaarSettings::promptOnSubmitKey); + bool dummyPrompt = false; const VcsBase::VcsBaseSubmitEditor::PromptSubmitResult response = commitEditor->promptSubmit(tr("Close Commit Editor"), tr("Do you want to commit the changes?"), tr("Message check failed. Do you want to proceed?"), |