tools/drawMapTest/main.cpp
author nemo
Thu, 04 Apr 2013 11:27:23 -0400
changeset 8854 31133afaa025
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove 70c086d9b03f - I suspect the issue was actually part of more general prob probably fixed in cfc44db21d72 by jaree

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

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