tools/drawMapTest/main.cpp
author unc0rr
Sat, 23 Feb 2013 12:01:51 +0400
changeset 8567 a31c453c6070
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix issue #507 (not highlighting friends joins)

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

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