tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 05 Jul 2020 02:03:08 +0200
branchui-scaling
changeset 15694 b3c9f5463cee
parent 11015 7a905f0070ce
permissions -rw-r--r--
[backport] Chat: Use Ctrl-A for 'select all' again (instead of Ctrl-B) Backport of 783959a6810b to branch ui-scaling by sheepluva

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

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

    return a.exec();
}