tools/drawMapTest/main.cpp
author sheepluva
Mon, 27 Aug 2012 11:05:09 +0200
changeset 7612 047c6692a2e7
parent 4425 2314bb0c433d
permissions -rw-r--r--
shutting the windows/pas2c build bot up: pas2c seems to fail parsing 'not' after a logical 'and' or 'or' (if no parenthesis)

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

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