fix typo that caused visual glitch in water body (e.g. visible on that particular screenie on bottom right corner)
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}