tools/drawMapTest/main.cpp
author sheepluva
Fri, 09 Sep 2011 15:52:59 +0200 (2011-09-09)
changeset 5827 a416f1070fdf
parent 4425 2314bb0c433d
permissions -rw-r--r--
we don't need trailing whitespaces... I guess :P
#include <QtGui/QApplication>
#include "mainwindow.h"

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