tools/drawMapTest/main.cpp
author nemo
Fri, 27 Apr 2012 22:25:26 -0400
changeset 6944 fe23137def16
parent 4425 2314bb0c433d
permissions -rw-r--r--
Ok, 20,000 was a bit much. Arbitrary multiplier that seems to shove things off enough.

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

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