tools/drawMapTest/main.cpp
author sheepluva
Sun, 01 Mar 2015 16:32:14 +0100
changeset 10839 aa0ceb47da1d
parent 4425 2314bb0c433d
permissions -rw-r--r--
make sure cursor drawing position does not get messed up by screen resize

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

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