tools/templates/main.cpp
author Xeli
Sun, 19 Feb 2012 16:51:22 +0100
changeset 6723 b77e2d4d664b
parent 359 59fbfc65fbda
permissions -rw-r--r--
check if the widget is shown before checking if the finger is on the widget

#include <QApplication>

#include "mainform.h"

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