tools/drawMapTest/main.cpp
author nemo
Fri, 09 Nov 2012 12:29:24 -0500
branchwebgl
changeset 8001 379063958821
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix why my first attempt to compile main had failed, causing me to ask koda what the secret was. apparently using an OS that ignores case...

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

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