tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 20 Feb 2018 17:52:22 +0100
changeset 13039 aed4b25ff242
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix volume caption not being shown when hitting mute key

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

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

    return a.exec();
}