Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}