tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 02:28:36 +0200
changeset 12731 54300512e742
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix small German typo

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

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