tools/drawMapTest/main.cpp
author Henek
Wed, 09 Mar 2011 22:39:35 +0100
changeset 4997 28c670367e6c
parent 4425 2314bb0c433d
permissions -rw-r--r--
correcting two misstakes in en.txt and sv.txt as reported by Cairo and others most definitely present in other locals too

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

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