rename mainwindow to MainWindow

This commit is contained in:
baldurk
2015-03-25 18:54:46 +00:00
parent b2c582aea1
commit e68e8efa40
5 changed files with 6 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "MainWindow.h"
#include "ui_MainWindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}