Finalized the About dialog, made it accessible through the start window

This commit is contained in:
parax0
2016-03-21 18:24:12 -06:00
parent b8b9426411
commit e43cc3586b
8 changed files with 69 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
#include "CAboutDialog.h"
#include "ui_CAboutDialog.h"
CAboutDialog::CAboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::CAboutDialog)
{
ui->setupUi(this);
}
CAboutDialog::~CAboutDialog()
{
delete ui;
}