summaryrefslogtreecommitdiff
path: root/src/plugins/git/gerrit/gerritdialog.h
diff options
context:
space:
mode:
authorPetar Perisin <petar.perisin@gmail.com>2013-05-26 14:16:41 +0200
committerPetar Perisin <petar.perisin@gmail.com>2013-05-26 15:08:36 +0200
commitb28ae0727491bba43a125cd6d0f24cbce9e586b4 (patch)
treeae0737ab43b78136193c7f898ef15937497724a8 /src/plugins/git/gerrit/gerritdialog.h
parente3a98141ea2509bbbd3cade6cfae223c813828f1 (diff)
downloadqt-creator-b28ae0727491bba43a125cd6d0f24cbce9e586b4.tar.gz
Gerrit Dialog - renamed "Apply" to "Cherry Pick"
Cherry pick is git command that everyone who works with git knows. First time I saw "Apply" I thought it was some git or gerrit command unknown to me. Renaming it to "Cherry Pick" makes dialog more clear, since user knows what command will execute when button is pressed. Change-Id: Ifbcad697ef5f5909a36dc008f716025d48a26ad0 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/git/gerrit/gerritdialog.h')
-rw-r--r--src/plugins/git/gerrit/gerritdialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/git/gerrit/gerritdialog.h b/src/plugins/git/gerrit/gerritdialog.h
index 2aa8d96ac1..7d8d1275c3 100644
--- a/src/plugins/git/gerrit/gerritdialog.h
+++ b/src/plugins/git/gerrit/gerritdialog.h
@@ -83,7 +83,7 @@ public:
signals:
void fetchDisplay(const QSharedPointer<Gerrit::Internal::GerritChange> &);
- void fetchApply(const QSharedPointer<Gerrit::Internal::GerritChange> &);
+ void fetchCherryPick(const QSharedPointer<Gerrit::Internal::GerritChange> &);
void fetchCheckout(const QSharedPointer<Gerrit::Internal::GerritChange> &);
public slots:
@@ -98,7 +98,7 @@ private slots:
void slotDoubleClicked(const QModelIndex &);
void slotRefreshStateChanged(bool);
void slotFetchDisplay();
- void slotFetchApply();
+ void slotFetchCherryPick();
void slotFetchCheckout();
void slotRefresh();
void displayRepositoryPath();
@@ -121,7 +121,7 @@ private:
Utils::PathChooser *m_repositoryChooser;
QDialogButtonBox *m_buttonBox;
QPushButton *m_displayButton;
- QPushButton *m_applyButton;
+ QPushButton *m_cherryPickButton;
QPushButton *m_checkoutButton;
QPushButton *m_refreshButton;
QLabel *m_repositoryChooserLabel;