tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 30 Dec 2015 11:59:43 -0500
changeset 11470 b8c14f26a2fb
parent 11015 7a905f0070ce
permissions -rw-r--r--
remove space from key binding name

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

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

    return a.exec();
}