Git: Specify shortcuts in ChangeSelectionDialog

Change-Id: If4f734e7a93246732f2e618feb107af598a79faa
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Petar Perisin <petar.perisin@gmail.com>
This commit is contained in:
Nikolai Kosjar
2013-05-06 15:24:48 +02:00
parent ec08eab40e
commit fd0cf19cfb

View File

@@ -50,13 +50,13 @@ ChangeSelectionDialog::ChangeSelectionDialog(const QString &workingDirectory, QW
, m_process(0)
, m_workingDirEdit(new QLineEdit(workingDirectory, this))
, m_changeNumberEdit(new QLineEdit(this))
, m_selectDirButton(new QPushButton(tr("Browse Directory..."), this))
, m_selectFromHistoryButton(new QPushButton(tr("Browse History..."), this))
, m_showButton(new QPushButton(tr("Show"), this))
, m_cherryPickButton(new QPushButton(tr("Cherry Pick"), this))
, m_revertButton(new QPushButton(tr("Revert"), this))
, m_checkoutButton(new QPushButton(tr("Checkout"), this))
, m_cancelButton(new QPushButton(tr("Cancel"), this))
, m_selectDirButton(new QPushButton(tr("Browse &Directory..."), this))
, m_selectFromHistoryButton(new QPushButton(tr("Browse &History..."), this))
, m_showButton(new QPushButton(tr("&Show"), this))
, m_cherryPickButton(new QPushButton(tr("Cherry &Pick"), this))
, m_revertButton(new QPushButton(tr("&Revert"), this))
, m_checkoutButton(new QPushButton(tr("Check&out"), this))
, m_cancelButton(new QPushButton(tr("&Cancel"), this))
, m_detailsText(new QPlainTextEdit(this))
, m_command(NoCommand)
{