tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 19 Sep 2018 09:31:06 +0200
changeset 13796 096cc009e0b8
parent 4425 2314bb0c433d
permissions -rw-r--r--
Clear gmSwitch before activating switcher If if you pressed [Switch Hedgehog] key and THEN enabled the Switch Hedgehog utility, you immediately switch. This was mildly confusing.

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

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