tools/drawMapTest/main.cpp
author sheepluva
Mon, 19 Jan 2015 01:18:43 +0100
changeset 10804 f5dc72575c92
parent 4425 2314bb0c433d
permissions -rw-r--r--
feedback/linux: fix wrong mem size being reported if mem > 4GB. thanks to tomreyn for reporting this issue

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

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