rename mainwindow to MainWindow

This commit is contained in:
baldurk
2015-07-10 16:38:16 +02:00
parent b2c582aea1
commit e68e8efa40
5 changed files with 6 additions and 6 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H