tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 15 Nov 2015 14:18:59 +0100
changeset 11385 4bf720dcef01
parent 11015 7a905f0070ce
permissions -rw-r--r--
this should fix travis build

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

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

    return a.exec();
}