tools/drawMapTest/main.cpp
author nemo
Tue, 06 Mar 2018 15:21:36 -0500
changeset 13090 26173dd0c606
parent 4425 2314bb0c433d
permissions -rw-r--r--
the clipping was just due to remote abuse anyway - this addresses a couple of the concerns from the bug

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

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