tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 02:02:28 +0200
changeset 12650 eaf719616c7b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix cursor often jumping to center when putting target while moving cursor It was about this time this HORRIBLY ANNOYING bug got fixed. Oh boy!

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

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