tools/drawMapTest/main.cpp
author Medo <smaxein@googlemail.com>
Sat, 18 Aug 2012 13:39:24 +0200
changeset 7560 e7ab89ab86f6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Hedgeroid: Don't update the map preview just for a theme change

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

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