tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 12 Nov 2017 21:41:06 +0100
changeset 12833 8cc3b6373351
parent 11015 7a905f0070ce
permissions -rw-r--r--
Update translations mentioned in changelog

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

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

    return a.exec();
}