mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
16 lines
299 B
C++
16 lines
299 B
C++
#include "recordinfodialog.h"
|
|
#include "ui_recordinfodialog.h"
|
|
|
|
RecordInfoDialog::RecordInfoDialog(const QString& text, QWidget* parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::RecordInfoDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->infoText->setText(text);
|
|
}
|
|
|
|
RecordInfoDialog::~RecordInfoDialog()
|
|
{
|
|
delete ui;
|
|
}
|