tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 08 Oct 2017 19:07:56 +0200
changeset 12680 cc13c9bc6839
parent 11015 7a905f0070ce
permissions -rw-r--r--
Update German and English locale files

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

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

    return a.exec();
}