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

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

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

    return a.exec();
}