aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/dialogs/ScrollMessageBox.cpp
diff options
context:
space:
mode:
authorkumquat-ir <66188216+kumquat-ir@users.noreply.github.com>2022-07-16 19:14:54 -0400
committerkumquat-ir <66188216+kumquat-ir@users.noreply.github.com>2022-07-16 19:14:54 -0400
commit33e34ebb83bdf423a4a60b373559f5923929c216 (patch)
treec3fa604029a8d8727228bd19c0eb17d8d7171ee2 /launcher/ui/dialogs/ScrollMessageBox.cpp
parentdce435c882b3370d04ff9c0af9e690a703007628 (diff)
downloadPrismLauncher-33e34ebb83bdf423a4a60b373559f5923929c216.tar.gz
PrismLauncher-33e34ebb83bdf423a4a60b373559f5923929c216.tar.bz2
PrismLauncher-33e34ebb83bdf423a4a60b373559f5923929c216.zip
Add "Open All" button to blocked mods dialog
Signed-off-by: kumquat-ir <66188216+kumquat-ir@users.noreply.github.com>
Diffstat (limited to 'launcher/ui/dialogs/ScrollMessageBox.cpp')
-rw-r--r--launcher/ui/dialogs/ScrollMessageBox.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/launcher/ui/dialogs/ScrollMessageBox.cpp b/launcher/ui/dialogs/ScrollMessageBox.cpp
deleted file mode 100644
index afdc4bae..00000000
--- a/launcher/ui/dialogs/ScrollMessageBox.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "ScrollMessageBox.h"
-#include "ui_ScrollMessageBox.h"
-
-
-ScrollMessageBox::ScrollMessageBox(QWidget *parent, const QString &title, const QString &text, const QString &body) :
- QDialog(parent), ui(new Ui::ScrollMessageBox) {
- ui->setupUi(this);
- this->setWindowTitle(title);
- ui->label->setText(text);
- ui->textBrowser->setText(body);
-}
-
-ScrollMessageBox::~ScrollMessageBox() {
- delete ui;
-}