tools/drawMapTest/main.cpp
author sheepluva
Sun, 11 Sep 2011 18:35:59 +0200
changeset 5859 285b3fd862e7
parent 4425 2314bb0c433d
permissions -rw-r--r--
added some changes I remembered/saw in the logs to the changelog

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

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