diff options
Diffstat (limited to 'src/forms')
-rw-r--r-- | src/forms/aboutdialog.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/forms/aboutdialog.cpp b/src/forms/aboutdialog.cpp index 1edaac4..dd26e91 100644 --- a/src/forms/aboutdialog.cpp +++ b/src/forms/aboutdialog.cpp @@ -43,9 +43,15 @@ AboutDialog::AboutDialog(QWidget *parent) : QLabel *detailsLabel = new QLabel(this); detailsLabel->setWordWrap(true); - detailsLabel->setText(tr("<p>" - "Long version: %1<br>" - "Configuration: %2" + detailsLabel->setText(tr("<h3>Version %1</h3>" + "<p>" + "Based on Qt " QT_VERSION_STR "<br>" +#if defined __clang__ + "Compiled with Clang " __clang_version__ "<br>" +#elif defined __GNUC__ + "Compiled with GCC " __VERSION__ "<br>" +#endif + "Configuration lives in %2" "</p>") .arg(qApp->applicationLongVersion()) .arg(sSettings->filePath())); |