tools/drawMapTest/main.cpp
author nemo
Mon, 05 Sep 2011 16:20:35 -0400
changeset 5789 7643cbb88f09
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't set index if using static map - avoids desync where map name is passed and list is set, but then index is set to 0

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

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