tools/drawMapTest/main.cpp
author nemo
Sun, 05 Feb 2012 17:35:52 -0500
changeset 6629 3028b9293b54
parent 4425 2314bb0c433d
permissions -rw-r--r--
ok. really fix by toggling back to ready. At least, I think this should do it...

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

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