diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-10-20 23:06:21 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-10-21 00:47:53 +0200 |
commit | d9b46289a1b9eec5bda19bd168750afba23a9ca4 (patch) | |
tree | 1347e4a0a28494de9e274e4b3963728fb92c6764 /launcher/dialogs/AboutDialog.cpp | |
parent | 5b3dffce62f7e4c00436adeca33c5f2fc4a21db4 (diff) | |
download | PrismLauncher-d9b46289a1b9eec5bda19bd168750afba23a9ca4.tar.gz PrismLauncher-d9b46289a1b9eec5bda19bd168750afba23a9ca4.tar.bz2 PrismLauncher-d9b46289a1b9eec5bda19bd168750afba23a9ca4.zip |
NOISSUE finish up the obvious parts of debranding
This is not absolutely complete, but reasonably so
Diffstat (limited to 'launcher/dialogs/AboutDialog.cpp')
-rw-r--r-- | launcher/dialogs/AboutDialog.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/launcher/dialogs/AboutDialog.cpp b/launcher/dialogs/AboutDialog.cpp index a4d30c3c..0c3f07db 100644 --- a/launcher/dialogs/AboutDialog.cpp +++ b/launcher/dialogs/AboutDialog.cpp @@ -113,6 +113,12 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDia "However, it should be abundantly clear that the project is a fork <b>without</b> implying that you have our blessing.</p>" )); + QString urlText("<html><head/><body><p><a href=\"%1\">%1</a></p></body></html>"); + ui->urlLabel->setText(urlText.arg(BuildConfig.LAUNCHER_GIT)); + + QString copyText("© 2012-2021 %1"); + ui->copyLabel->setText(copyText.arg(BuildConfig.LAUNCHER_COPYRIGHT)); + connect(ui->closeButton, SIGNAL(clicked()), SLOT(close())); connect(ui->aboutQt, &QPushButton::clicked, &QApplication::aboutQt); |