tools/templates/main.cpp
author unc0rr
Wed, 25 Oct 2017 20:38:51 +0200
changeset 12761 0167e337553b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Use maybeNick from Utils, fixes empty nickname inserted in ROOMS protocol command parameters. Not tested, but builds, and it's Haskell...

#include <QApplication>

#include "mainform.h"

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