tools/templates/main.cpp
author nemo
Wed, 03 Jun 2009 00:35:23 +0000
changeset 2147 ffa64983dc07
parent 359 59fbfc65fbda
permissions -rw-r--r--
typos - the fix for zoom in uMisc.pas appears to be screwing up flakes and other things. commenting it out for now

#include <QApplication>

#include "mainform.h"

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