tools/templates/main.cpp
author unc0rr
Thu, 08 Mar 2018 21:58:59 +0100
changeset 13131 f10f4bf5f84d
parent 359 59fbfc65fbda
permissions -rw-r--r--
This should fix crash with custom bindings

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}