tools/drawMapTest/main.cpp
author nemo
Mon, 09 Jan 2012 01:13:55 -0500
changeset 6554 a262ef09c7e6
parent 4425 2314bb0c433d
permissions -rw-r--r--
ok. pretty sure that has to be consistent in both. go with the smaller one...

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

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