summaryrefslogtreecommitdiffstats
path: root/sdrbase/gui/aboutdialog.cpp
blob: 1c6f87bbda8fb112ec3efa10ba90bd368803f652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "gui/aboutdialog.h"
#include "ui_aboutdialog.h"

AboutDialog::AboutDialog(QWidget* parent) :
	QDialog(parent),
	ui(new Ui::AboutDialog)
{
	ui->setupUi(this);
}

AboutDialog::~AboutDialog()
{
	delete ui;
}