Modified welcome text file so it shows proper names in the reporsitory
[confmgr] / aboutdialog.cpp
1 #include "aboutdialog.h"
2 #include "ui_aboutdialog.h"
3
4 AboutDialog::AboutDialog(QWidget *parent) :
5     QDialog(parent),
6     ui(new Ui::AboutDialog)
7 {
8     ui->setupUi(this);
9 }
10
11 AboutDialog::~AboutDialog()
12 {
13     delete ui;
14 }