tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 19 Sep 2018 09:31:06 +0200
changeset 13796 096cc009e0b8
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

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