Display version in title of about dialog.

This commit is contained in:
tastytea 2020-02-25 23:23:38 +01:00
parent 79137bfddf
commit 9b3ed576b1
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#include "dialog_about.hpp"
#include "fedipotato.hpp"
#include <QFile>
@ -10,6 +11,9 @@ DialogAbout::DialogAbout(QDialog *parent)
{
setupUi(this);
setWindowTitle(QString("About FediPotato ")
+= FediPotato::get_version().data());
display_authors();
}