aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/logchangedialog.cpp
diff options
context:
space:
mode:
authorPetar Perisin <petar.perisin@gmail.com>2013-04-27 16:23:29 +0200
committerPetar Perisin <petar.perisin@gmail.com>2013-04-29 00:33:29 +0200
commit81f62d36734e794f0a39b49308e51ebefcd0e2c6 (patch)
treebcc09763e13dd215f41ba9e0b59e8364195c5b93 /src/plugins/git/logchangedialog.cpp
parent3ce2b605d96f28fbc379b77627e50b826338dbc6 (diff)
Git - use proper label text in LogChangeDialog
Change-Id: Ie0b9f06f411308e93dc29aa7025a960fc640a359 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/git/logchangedialog.cpp')
-rw-r--r--src/plugins/git/logchangedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp
index 3ba6458d98..4dd0d43ec6 100644
--- a/src/plugins/git/logchangedialog.cpp
+++ b/src/plugins/git/logchangedialog.cpp
@@ -61,7 +61,7 @@ LogChangeDialog::LogChangeDialog(bool isReset, QWidget *parent)
headers << tr("Sha1")<< tr("Subject");
m_model->setHorizontalHeaderLabels(headers);
QVBoxLayout *layout = new QVBoxLayout(this);
- layout->addWidget(new QLabel(tr("Reset to:"), this));
+ layout->addWidget(new QLabel(isReset ? tr("Reset to:") : tr("Select change:"), this));
m_treeView->setModel(m_model);
m_treeView->setMinimumWidth(300);
m_treeView->setUniformRowHeights(true);