tools/templates/main.cpp
author Henek
Wed, 22 Dec 2010 15:42:47 +0100
changeset 4626 775f43e90383
parent 359 59fbfc65fbda
permissions -rw-r--r--
fixed showmission so it actually displays the right icons

#include <QApplication>

#include "mainform.h"

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