Git: Rename push enum values

Change-Id: I2809096774882ba1e7e98e2805ad94f03a70dbdc
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Petar Perisin
2013-10-02 09:40:08 +03:00
committed by Orgad Shaneh
parent 13a0b348be
commit 6cf030d8d3
4 changed files with 12 additions and 12 deletions

View File

@@ -47,7 +47,7 @@ namespace Internal {
// ------------------
GitSubmitEditorWidget::GitSubmitEditorWidget(QWidget *parent) :
VcsBase::SubmitEditorWidget(parent),
m_pushAction(CommitOnly),
m_pushAction(NoPush),
m_gitSubmitPanel(new QWidget),
m_logChangeWidget(0),
m_hasUnmerged(false),
@@ -171,9 +171,9 @@ QString GitSubmitEditorWidget::cleanupDescription(const QString &input) const
QString GitSubmitEditorWidget::commitName() const
{
if (m_pushAction == CommitAndPush)
if (m_pushAction == NormalPush)
return tr("Commit and Push");
else if (m_pushAction == CommitAndPushToGerrit)
else if (m_pushAction == PushToGerrit)
return tr("Commit and Push to Gerrit");
return tr("Commit");
@@ -194,19 +194,19 @@ void GitSubmitEditorWidget::authorInformationChanged()
void GitSubmitEditorWidget::commitOnlySlot()
{
m_pushAction = CommitOnly;
m_pushAction = NoPush;
updateSubmitAction();
}
void GitSubmitEditorWidget::commitAndPushSlot()
{
m_pushAction = CommitAndPush;
m_pushAction = NormalPush;
updateSubmitAction();
}
void GitSubmitEditorWidget::commitAndPushToGerritSlot()
{
m_pushAction = CommitAndPushToGerrit;
m_pushAction = PushToGerrit;
updateSubmitAction();
}