tools/drawMapTest/main.cpp
author unc0rr
Tue, 28 May 2013 00:01:58 +0400
changeset 9063 5cab446e1341
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix "try again" button in "reconnected to fast" dialog trying to connect to port 0

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

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