tools/hwmap2txt/hwmapconverter/main.cpp
author KoBeWi
Thu, 01 Nov 2018 12:09:29 +0100
changeset 14079 fa2ed06c2f55
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix too long Polish translation of fps

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

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

    return a.exec();
}