tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy@disroot.org>
Wed, 24 May 2023 23:54:58 +0200
changeset 15984 6a985a680c44
parent 11015 7a905f0070ce
permissions -rw-r--r--
Don't destroy chat when window loses focus (bug #623)

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

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

    return a.exec();
}