added demonotice and fixed mac icon

This commit is contained in:
itsmattkc
2018-09-04 19:45:00 +10:00
parent 9d185e0a40
commit ff4bb37394
6 changed files with 155 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "demonotice.h"
#include "ui_demonotice.h"
DemoNotice::DemoNotice(QWidget *parent) :
QDialog(parent),
ui(new Ui::DemoNotice)
{
ui->setupUi(this);
}
DemoNotice::~DemoNotice()
{
delete ui;
}