Skip to content

Commit

Permalink
Bump copyright year to 2021
Browse files Browse the repository at this point in the history
Fixes: QTBUG-89980
Pick-to: 6.1
Pick-to: 6.0
Pick-to: 5.15
Change-Id: Ice588f78d392f1dfd1f96de8840a3c7e28e4edd1
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
  • Loading branch information
FriedemannKleint committed Feb 3, 2021
1 parent 0d36e0d commit 0a097b7
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/assistant/assistant/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -913,7 +913,7 @@ void MainWindow::showAboutDialog()
"<p>Version %2</p>"
"<p>Browser: %3</p></center>"
"<p>Copyright (C) %4 The Qt Company Ltd.</p>")
.arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2020")),
.arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2021")),
resources);
QLatin1String path(":/qt-project.org/assistant/images/assistant-128.png");
aboutDia.setPixmap(QString(path));
2 changes: 1 addition & 1 deletion src/designer/src/designer/versiondialog.cpp
Original file line number Diff line number Diff line change
@@ -163,7 +163,7 @@ VersionDialog::VersionDialog(QWidget *parent)

lbl->setText(tr("%1"
"<br/>Copyright (C) %2 The Qt Company Ltd."
).arg(version, QStringLiteral("2020")));
).arg(version, QStringLiteral("2021")));

lbl->setWordWrap(true);
lbl->setOpenExternalLinks(true);
2 changes: 1 addition & 1 deletion src/linguist/linguist/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -1368,7 +1368,7 @@ void MainWindow::about()
const QString description
= tr("Qt Linguist is a tool for adding translations to Qt applications.");
const QString copyright
= tr("Copyright (C) %1 The Qt Company Ltd.").arg(QStringLiteral("2020"));
= tr("Copyright (C) %1 The Qt Company Ltd.").arg(QStringLiteral("2021"));
box.setText(QStringLiteral("<center><img src=\":/images/icons/linguist-128-32.png\"/></img><p>%1</p></center>"
"<p>%2</p>"
"<p>%3</p>").arg(version, description, copyright));
2 changes: 1 addition & 1 deletion src/qdbus/qdbusviewer/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ void MainWindow::about()
"<h3>%1</h3>"
"<p>Version %2</p></center>"
"<p>Copyright (C) %3 The Qt Company Ltd.</p>")
.arg(tr("D-Bus Viewer"), QLatin1String(QT_VERSION_STR), QStringLiteral("2020")));
.arg(tr("D-Bus Viewer"), QLatin1String(QT_VERSION_STR), QStringLiteral("2021")));
box.setWindowTitle(tr("D-Bus Viewer"));
box.exec();
}

0 comments on commit 0a097b7

Please sign in to comment.