tools/drawMapTest/main.cpp
author nemo
Tue, 24 Jul 2012 18:53:42 -0400
changeset 7423 ec8f690f3e0f
parent 4425 2314bb0c433d
permissions -rw-r--r--
workaround - not great though since they probably should have proper initial values like they used to have in uConsts. leaving a note to koda

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

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