tools/drawMapTest/main.cpp
author sheepluva
Sun, 01 May 2016 14:32:47 +0200
changeset 11785 947e2d53afc1
parent 4425 2314bb0c433d
permissions -rw-r--r--
add button to randomize theme only

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

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