mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-19 01:04:33 +00:00
19 lines
432 B
C++
19 lines
432 B
C++
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020-2021, The Monero Project.
|
||
|
|
||
|
#include "InfoDialog.h"
|
||
|
#include "ui_InfoDialog.h"
|
||
|
|
||
|
InfoDialog::InfoDialog(QWidget *parent, const QString &title, const QString &infoData)
|
||
|
: QDialog(parent)
|
||
|
, ui(new Ui::InfoDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
this->setWindowTitle(title);
|
||
|
ui->info->setPlainText(infoData);
|
||
|
}
|
||
|
|
||
|
InfoDialog::~InfoDialog() {
|
||
|
delete ui;
|
||
|
}
|