tools/drawMapTest/main.cpp
author sheepluva
Tue, 29 Mar 2016 08:52:45 +0200
changeset 11630 9d3e32623567
parent 4425 2314bb0c433d
permissions -rw-r--r--
change all URLs of feedback dialog to use https

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

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