tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Tue, 04 Apr 2017 02:41:11 +0200
changeset 12153 4b3995a62084
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix incorrect size of Beach theme icons The icons had about double the required size. This caused a graphical glitch when selecting Beach and hand-drawn map.

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

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