aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/logchangedialog.cpp
diff options
context:
space:
mode:
authorAndre Hartmann <[email protected]>2024-09-09 20:28:41 +0200
committerAndrĂ© Hartmann <[email protected]>2024-09-10 14:07:29 +0000
commit2b02b518b59a8777dd96a2ce4bc5d3ad4d65ba81 (patch)
treeb98d6592b2788f33d90510bb550943200eccc3e1 /src/plugins/git/logchangedialog.cpp
parent0fd06d08054c36aa85b2ac86c4411caea19b2e8d (diff)
Git: Replace "SHA1" with "hash" in translatable strings
Change-Id: I4af9f995ea53236ab0108ce45d3fc26a59d8ef43 Reviewed-by: Leena Miettinen <[email protected]> Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/git/logchangedialog.cpp')
-rw-r--r--src/plugins/git/logchangedialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp
index 739e40b8335..832a14f0fb1 100644
--- a/src/plugins/git/logchangedialog.cpp
+++ b/src/plugins/git/logchangedialog.cpp
@@ -66,8 +66,7 @@ LogChangeWidget::LogChangeWidget(QWidget *parent)
, m_model(new LogChangeModel(this))
, m_hasCustomDelegate(false)
{
- QStringList headers;
- headers << Tr::tr("Sha1")<< Tr::tr("Subject");
+ const QStringList headers = {Tr::tr("Hash"), Tr::tr("Subject")};
m_model->setHorizontalHeaderLabels(headers);
setModel(m_model);
setMinimumWidth(300);