tools/drawMapTest/main.cpp
author unc0rr
Thu, 27 Mar 2014 23:25:31 +0400
changeset 10215 26fc5502ba22
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Fix applying vote result - Votes expiring (I'm sure it doesn't even build, but my ghc is broken for now, hoping for the best)

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

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