We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87c77f9 commit f0a97b9Copy full SHA for f0a97b9
widgets/aboutwidget.cpp
@@ -12,7 +12,7 @@ AboutWidget::AboutWidget(QWidget *parent) :
12
ui->version->setText(tr("v1.0.0"));
13
14
auto datetime = QStringLiteral(__DATE__) + QStringLiteral(" ") + QStringLiteral(__TIME__);
15
- ui->builtWith->setText(tr("Built with Qt v%1 on %2").arg(QT_VERSION_STR).arg(datetime));
+ ui->builtWith->setText(tr("Built with Qt v%1 on %2").arg(QT_VERSION_STR, datetime));
16
17
// TODO: add details here
18
QString details = R"(TODO)";
0 commit comments