tools/drawMapTest/main.cpp
author koda
Wed, 02 Nov 2011 16:31:16 +0100
changeset 6261 7050772ae46a
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove the need of saving the calling controller (disabling stats, but they were already broken by a previous commit)

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

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