tools/drawMapTest/main.cpp
author sheepluva
Tue, 21 Jan 2014 01:27:25 +0100
changeset 10030 f40fdc566e94
parent 4425 2314bb0c433d
permissions -rw-r--r--
* fix divbyzero found by GetGravity test (cWindSpeed was used where cMaxWindSpeed should have been) * make GetGravity return same integer value that was given by SetGravity (by rounding away precision errors rather than just truncate) - a problem also identified by the test :P

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

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