tools/drawMapTest/main.cpp
author nemo
Thu, 16 May 2013 14:02:33 -0400
changeset 9004 901ee9a8a3b4
parent 4425 2314bb0c433d
permissions -rw-r--r--
Yeah, this isn't safe either. Caused bug #629 - removing.

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

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