tools/drawMapTest/main.cpp
author unc0rr
Tue, 30 Dec 2014 23:31:00 +0300
changeset 10734 8fadc4305df0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Uhm... this seems to count as a workaround, not tested though

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

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