Skip to content

Commit

Permalink
Trigger Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chchwy committed Jun 18, 2024
1 parent f34cc63 commit 7e83608
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ void AboutDialog::init()
#else
devText << "Development Build " __DATE__;
#endif

devText << ""; // An empty line

#if defined(GIT_EXISTS)
Expand All @@ -60,7 +59,7 @@ void AboutDialog::init()

devText << QString("Operating System: %1").arg(QSysInfo::prettyProductName())
<< QString("CPU Architecture: %1").arg(QSysInfo::buildCpuArchitecture());
if(QString(qVersion()) == QT_VERSION_STR)
if (QString(qVersion()) == QT_VERSION_STR)
{
devText << QString("Qt Version: %1").arg(QT_VERSION_STR);
}
Expand Down

0 comments on commit 7e83608

Please sign in to comment.