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 += "
Clementine contributors");
- for (const Person &person : clementine_constributors_) {
+ for (const Person &person : clementine_contributors_) {
ret += "
" + PersonToHtml(person);
}
ret += "