tools/drawMapTest/main.cpp
author nemo
Thu, 23 Feb 2012 12:58:17 -0500
changeset 6734 9709d15dabfa
parent 4425 2314bb0c433d
permissions -rw-r--r--
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)

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

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