tools/drawMapTest/main.cpp
author sheepluva
Sat, 29 Nov 2014 15:38:28 +0100
changeset 10573 3b82b4d90eb7
parent 4425 2314bb0c433d
permissions -rw-r--r--
make the code, which was supposed to iterate file log number (if no access) and fallback to stderr in worst case rather than segfault, actually work

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

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