More UI work...

This commit is contained in:
Adam Ierymenko
2013-11-15 17:04:32 -05:00
parent 10f03d4119
commit f1b0178a85
7 changed files with 451 additions and 49 deletions

View File

@ -0,0 +1,18 @@
#include "aboutwindow.h"
#include "ui_aboutwindow.h"
AboutWindow::AboutWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::AboutWindow)
{
ui->setupUi(this);
}
AboutWindow::~AboutWindow()
{
delete ui;
}
void AboutWindow::on_uninstallButton_clicked()
{
}