Skip to content

Commit f0a97b9

Browse files
committed
use multi-arg
1 parent 87c77f9 commit f0a97b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

widgets/aboutwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AboutWidget::AboutWidget(QWidget *parent) :
1212
ui->version->setText(tr("v1.0.0"));
1313

1414
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));
15+
ui->builtWith->setText(tr("Built with Qt v%1 on %2").arg(QT_VERSION_STR, datetime));
1616

1717
// TODO: add details here
1818
QString details = R"(TODO)";

0 commit comments

Comments
 (0)