tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 02:02:28 +0200
changeset 12650 eaf719616c7b
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}