tools/drawMapTest/main.cpp
author nemo
Fri, 12 Aug 2011 15:33:07 -0400
changeset 5554 b27ed6c6f538
parent 4425 2314bb0c433d
permissions -rw-r--r--
Revert ParseCommandOverride change since it appears to be badly screwing up scripting. Need to find out why. This backs out 7f57d0c7816a and the recent workaround.

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

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