c0bffa0107
- add destructors to Project and Editor - properly close project when opening a new one - when reloading comboboxes, do not set map values with the new first item
12 lines
207 B
C++
12 lines
207 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
a.setStyle("fusion");
|
|
MainWindow w(nullptr);
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|