tools/drawMapTest/main.cpp
author sheepluva
Sun, 29 Apr 2012 20:52:10 +0200
changeset 6960 822f8269e13f
parent 4425 2314bb0c433d
permissions -rw-r--r--
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>

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

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