fix compilation with clang. fixes
issue #553 - thanks to julien for reporting and to drew for the first part of the fix
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}