tools/drawMapTest/main.cpp
author nemo
Fri, 26 Oct 2012 10:31:26 -0400
changeset 7822 61ff669d610f
parent 4425 2314bb0c433d
permissions -rw-r--r--
missed this one when fixing regular flakes. issue #444

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

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