tools/drawMapTest/main.cpp
author sheepluva
Fri, 29 Sep 2017 22:09:11 +0200
changeset 12592 00b539e6115d
parent 4425 2314bb0c433d
permissions -rw-r--r--
rename ifTransparent to ifColorKey This should make the name less confusing. However this image-flag will possibly be dropped completely.

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

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