Skip to content

Commit

Permalink
Fix a typo in about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultMndr committed Mar 15, 2018
1 parent eb89c0d commit a3239f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dialogabout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ DialogAbout::DialogAbout(QWidget *parent) :
ui(new Ui::DialogAbout)
{
ui->setupUi(this);
ui->label->setText(QString("ProtonClassicSuite version du %1<br>©2006-%2 Laboratoire de Recherche pour le Développement Local<br><a href='http://gipilab.org'>http://gipilab.org</a>").arg(VERSION).arg(QDate::currentDate().year()));
ui->label->setText(QString("ProtonClassicSuite version %1<br>©2006-%2 Laboratoire de Recherche pour le Développement Local<br><a href='http://gipilab.org'>http://gipilab.org</a>").arg(VERSION).arg(QDate::currentDate().year()));
QFile eulaFile(":/EULA/EULA.txt");
eulaFile.open(QIODevice::ReadOnly);
QTextStream in(&eulaFile);
Expand Down

0 comments on commit a3239f5

Please sign in to comment.