tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 03 Dec 2016 09:09:16 +0100
changeset 12103 966a9739812f
parent 11015 7a905f0070ce
permissions -rw-r--r--
copyToXYFromRect: fix pixels overflowing pixel lines in dest

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

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

    return a.exec();
}