tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 23 Apr 2016 10:48:18 +0200
changeset 11664 64465e0eb852
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix default binding for F10 / slot 10 not working

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

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

    return a.exec();
}