tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Nov 2018 20:33:39 +0100
changeset 14215 e60e2e7dd43a
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove 2 strings violating the 0.9.25 string freeze. Backout this changeset after 0.9.25 got released

#include <QApplication>

#include "mainform.h"

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