tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Thu, 22 Oct 2020 12:50:24 +0200
changeset 15753 72f735c03fec
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix some problems caught by C compiler

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

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

    return a.exec();
}