Show qt version in About screen

This commit is contained in:
Duke Leto
2022-02-18 09:37:48 -05:00
parent 9e8e95200c
commit 825e50b2ea
2 changed files with 13 additions and 0 deletions

View File

@@ -284,6 +284,8 @@ MainWindow::MainWindow(QWidget *parent) :
QString version = QString("Version ") % QString(APP_VERSION) % " (" % QString(__DATE__) % ")";
about.versionLabel->setText(version);
about.qtversion->setText( QString("QT Version ") % QString(QT_VERSION_STR) );
aboutDialog.exec();
});