tools/drawMapTest/main.cpp
author unc0rr
Sat, 12 Mar 2011 22:42:01 +0300
changeset 5000 72d8fb26223d
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Don't pretend client sent some message from sending thread (fixes crash when client is already deleted by recieveng thread) - Better exception handling in recieving thread

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

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