tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Mon, 26 Aug 2019 12:36:07 +0200
changeset 15360 09fc16926855
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix usage of wrong (and uninitialized) variable

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

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

    return a.exec();
}