tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Tue, 21 Jun 2016 18:02:46 -0400
changeset 11836 1d41f297b3d3
parent 11015 7a905f0070ce
permissions -rw-r--r--
bit of a start on HDPI monitor support. Fonts.

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

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

    return a.exec();
}