tools/drawMapTest/main.cpp
author koda
Sat, 13 Apr 2013 20:34:30 +0200
changeset 8908 d3033e3a4113
parent 4425 2314bb0c433d
permissions -rw-r--r--
let's try to kill the thread right away and protect the thread variable with a mutex

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

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