Skip to content

Commit

Permalink
Add years in About window (fixes #302)
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed May 13, 2020
1 parent d1c9d05 commit a1d0e3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1119,8 +1119,10 @@ void MainWindow::actionAbout() {
"<li>Lilian Lefranc</li>"
"<li>Arnaud Rolly</li>"
"<li>Mathieu Leplatre</li>"
"<li>Emmanuel Digiaro</li>")
.arg(VERSION));
"<li>Emmanuel Digiaro</li>"
"<h2>© 2011 - %2</h2>")
.arg(VERSION)
.arg(QDate::currentDate().year()));
}

void MainWindow::actionShowHelp() {
Expand Down

0 comments on commit a1d0e3b

Please sign in to comment.