tools/templates/main.cpp
author unc0rr
Fri, 26 Oct 2018 19:53:07 +0200
changeset 13990 b9b1d74b7fef
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix lack of message and segfault when number texture creation fails

#include <QApplication>

#include "mainform.h"

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