tools/drawMapTest/main.cpp
author Wuzzy
Mon, 18 Nov 2013 22:14:16 +0100
changeset 9704 055fee9da6a0
parent 4425 2314bb0c433d
permissions -rw-r--r--
german translation update PS: * I also merged in the typo fixes by nemo and hasufell * Sorry it took so looooong for this to actually get committed -sheepluva

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

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