summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2018-04-09 12:17:15 -0500
committerSilarn <jrim@rimpo.org>2018-04-09 12:17:15 -0500
commit47dc5cded72ff79a3964ef39b7ad23e6b27fcdff (patch)
tree3f23f0923aef51351e6a3fcb5d7b30286019ad4c /src
parentbf9d187036566c423f7e28cb2ec4ab63a7fda5d3 (diff)
Add DXTex header licenses for new BSATK handling of FO4 texture BA2s
Diffstat (limited to 'src')
-rw-r--r--src/aboutdialog.cpp2
-rw-r--r--src/aboutdialog.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/aboutdialog.cpp b/src/aboutdialog.cpp
index 5ac05df7..a350036f 100644
--- a/src/aboutdialog.cpp
+++ b/src/aboutdialog.cpp
@@ -54,6 +54,7 @@ AboutDialog::AboutDialog(const QString &version, QWidget *parent)
m_LicenseFiles[LICENSE_SIP] = "sip.txt";
m_LicenseFiles[LICENSE_CASTLE] = "Castle.txt";
m_LicenseFiles[LICENSE_ANTLR] = "AntlrBuildTask.txt";
+ m_LicenseFiles[LICENSE_DXTEX] = "DXTex.txt";
addLicense("Qt", LICENSE_LGPL3);
addLicense("Qt Json", LICENSE_GPL3);
@@ -73,6 +74,7 @@ AboutDialog::AboutDialog(const QString &version, QWidget *parent)
addLicense("spdlog", LICENSE_SPDLOG);
addLicense("{fmt}", LICENSE_FMT);
addLicense("SIP", LICENSE_SIP);
+ addLicense("DXTex Headers", LICENSE_DXTEX);
ui->nameLabel->setText(QString("<span style=\"font-size:12pt; font-weight:600;\">%1 %2</span>").arg(ui->nameLabel->text()).arg(version));
#if defined(HGID)
diff --git a/src/aboutdialog.h b/src/aboutdialog.h
index a67c9c73..3ae3237b 100644
--- a/src/aboutdialog.h
+++ b/src/aboutdialog.h
@@ -60,7 +60,8 @@ private:
LICENSE_FMT,
LICENSE_SIP,
LICENSE_CASTLE,
- LICENSE_ANTLR
+ LICENSE_ANTLR,
+ LICENSE_DXTEX
};
private: