tools/templates/main.cpp
author sheepluva
Sat, 13 Oct 2012 13:13:15 +0200
changeset 7750 31e4f6c1834b
parent 359 59fbfc65fbda
permissions -rw-r--r--
small tweak. (reverse mouse wheel directions for color change)

#include <QApplication>

#include "mainform.h"

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