tools/drawMapTest/main.cpp
author sheepluva
Tue, 04 Feb 2014 17:18:05 +0100
changeset 10106 4020864e3d79
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix a relevant warning I caused by accident

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

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