tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 21 Sep 2017 16:53:07 +0200
changeset 12473 faed28f815c7
parent 11015 7a905f0070ce
permissions -rw-r--r--
Simplify error messages in record play page and fix poor grammar.

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

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

    return a.exec();
}