tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 20 Nov 2016 01:31:09 +0100
changeset 11962 209a66df2340
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add more descriptions into desktop entry files, fix some specification mismatches

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

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

    return a.exec();
}