tools/drawMapTest/main.cpp
author sheepluva
Tue, 10 Jun 2014 22:35:44 +0200
changeset 10273 99032c5be7ba
parent 4425 2314bb0c433d
permissions -rw-r--r--
update viewlimits after screen/window resize

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

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