tools/drawMapTest/main.cpp
author sheepluva
Fri, 29 Apr 2016 23:42:37 +0200
changeset 11777 77afc967f38e
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix memory corruptions caused by outofbounds-writes in uTouch

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}