tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 30 Jun 2019 11:43:39 +0200
changeset 15208 13e3e643b4f5
parent 11015 7a905f0070ce
permissions -rw-r--r--
Mark Polish translation as complete for next release

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

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

    return a.exec();
}