Skip to content

Commit 78195c7

Browse files
committed
license info added to about window
1 parent f0a97b9 commit 78195c7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

widgets/aboutwidget.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ AboutWidget::AboutWidget(QWidget *parent) :
1515
ui->builtWith->setText(tr("Built with Qt v%1 on %2").arg(QT_VERSION_STR, datetime));
1616

1717
// TODO: add details here
18-
QString details = R"(TODO)";
18+
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+
)";
1924
ui->detailsEdit->setPlainText(details);
2025
}
2126

0 commit comments

Comments
 (0)