tools/templates/main.cpp
author nemo
Fri, 12 Aug 2011 14:09:08 -0400
changeset 5553 4bb542350a18
parent 359 59fbfc65fbda
permissions -rw-r--r--
extend the workaround. FIXME still applies

#include <QApplication>

#include "mainform.h"

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