aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/dialogs/ScrollMessageBox.cpp
blob: afdc4bae16801eaa9331c5ec912e7fdfe0f33e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
}