tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Thu, 24 Oct 2019 09:41:10 -0400
changeset 15481 58ce582ae87d
parent 11015 7a905f0070ce
permissions -rw-r--r--
remove erroneous else conditions to make what is going on clearer, add a comment

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

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

    return a.exec();
}