tools/drawMapTest/main.cpp
author sheepluva
Tue, 11 Nov 2014 21:22:23 +0100
changeset 10486 5e2d26bcafd6
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix one of my translation related brainfarts

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

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