tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 08 Apr 2017 05:04:18 +0200
changeset 12191 322aaad4a93d
parent 359 59fbfc65fbda
permissions -rw-r--r--
Load screen: Move “LOADING” from image into text box So this message can be properly translated

#include <QApplication>

#include "mainform.h"

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