From 387d790228af646a4def4f68af92fe84cc070faa Mon Sep 17 00:00:00 2001
From: Jonas Kvinge
Date: Thu, 22 Aug 2019 18:49:03 +0200
Subject: [PATCH] Fix spelling in contributor variables in about
---
src/dialogs/about.cpp | 12 ++++++------
src/dialogs/about.h | 4 ++--
src/dialogs/about.ui | 2 +-
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/dialogs/about.cpp b/src/dialogs/about.cpp
index 3d0dac6da..78fdfef18 100644
--- a/src/dialogs/about.cpp
+++ b/src/dialogs/about.cpp
@@ -44,7 +44,7 @@ About::About(QWidget *parent):QDialog(parent) {
strawberry_authors_ \
<< Person("Jonas Kvinge", "jonas@jkvinge.net");
- strawberry_constributors_ \
+ strawberry_contributors_ \
<< Person("Gavin D. Howard", "yzena.tech@gmail.com")
<< Person("Martin Delille", "martin@lylo.tv");
@@ -59,7 +59,7 @@ About::About(QWidget *parent):QDialog(parent) {
<< Person(QString::fromUtf8("Paweł Bara"), "keirangtp@gmail.com")
<< Person("Arnaud Bienner", "arnaud.bienner@gmail.com");
- clementine_constributors_ \
+ clementine_contributors_ \
<< Person("Mark Kretschmann", "kretschmann@kde.org")
<< Person("Max Howell", "max.howell@methylblue.com")
<< Person("Jakub Stachowski", "qbast@go2.pl")
@@ -96,8 +96,8 @@ About::About(QWidget *parent):QDialog(parent) {
ui_.label_title->setText(Title);
ui_.label_text->setText(MainHtml());
- ui_.text_constributors->setText(ContributorsHtml());
- ui_.text_constributors->updateGeometry();
+ ui_.text_contributors->setText(ContributorsHtml());
+ ui_.text_contributors->updateGeometry();
updateGeometry();
ui_.buttonBox->button(QDialogButtonBox::Close)->setShortcut(QKeySequence::Close);
@@ -145,7 +145,7 @@ QString About::ContributorsHtml() const {
ret += "
";
ret += tr("Strawberry contributors");
- for (const Person &person : strawberry_constributors_) {
+ for (const Person &person : strawberry_contributors_) {
ret += "
" + PersonToHtml(person);
}
ret += "
";
@@ -163,7 +163,7 @@ QString About::ContributorsHtml() const {
ret += "";
ret += tr("Clementine contributors");
- for (const Person &person : clementine_constributors_) {
+ for (const Person &person : clementine_contributors_) {
ret += "
" + PersonToHtml(person);
}
ret += "
";
diff --git a/src/dialogs/about.h b/src/dialogs/about.h
index b27d1b153..0667e0803 100644
--- a/src/dialogs/about.h
+++ b/src/dialogs/about.h
@@ -56,10 +56,10 @@ class About : public QDialog {
Ui::About ui_;
QList strawberry_authors_;
- QList strawberry_constributors_;
+ QList strawberry_contributors_;
QList strawberry_thanks_;
QList clementine_authors_;
- QList clementine_constributors_;
+ QList clementine_contributors_;
};
#endif // ABOUT_H
diff --git a/src/dialogs/about.ui b/src/dialogs/about.ui
index 5da0bfb64..c04c0ff0a 100644
--- a/src/dialogs/about.ui
+++ b/src/dialogs/about.ui
@@ -119,7 +119,7 @@
-
-
+
0