tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 21 Feb 2018 15:53:30 +0100
changeset 13048 9dd724e8d620
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix SD flakes attributes not set properly when SD flake count = normal flake count Fixes bug #233

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

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