tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Mon, 14 Mar 2016 14:38:23 +0100
changeset 11604 4df32636a4b2
parent 11015 7a905f0070ce
permissions -rw-r--r--
german translation: fix error due to confusion of plural "you" with singular "you"

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

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

    return a.exec();
}