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 f0a97b9 commit 78195c7Copy full SHA for 78195c7
widgets/aboutwidget.cpp
@@ -15,7 +15,12 @@ AboutWidget::AboutWidget(QWidget *parent) :
15
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)";
+ QString details = R"(Provided under MIT license
19
+
20
+This application uses the following external libraries:
21
22
+1. Eigen - MPL 2.0 - https://eigen.tuxfamily.org/
23
+)";
24
ui->detailsEdit->setPlainText(details);
25
}
26
0 commit comments