tools/drawMapTest/main.cpp
author unc0rr
Tue, 10 Dec 2013 22:09:57 +0400
changeset 9778 6166aa84a396
parent 4425 2314bb0c433d
permissions -rw-r--r--
Better diagnostic message when failing to load theme.cfg

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

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