tools/templates/main.cpp
author Henek
Wed, 09 Mar 2011 22:39:35 +0100
changeset 4997 28c670367e6c
parent 359 59fbfc65fbda
permissions -rw-r--r--
correcting two misstakes in en.txt and sv.txt as reported by Cairo and others most definitely present in other locals too

#include <QApplication>

#include "mainform.h"

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