forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user