raise the minimum qt version required to 4.6; this was needed as the new animation frameworks were absent in 4.5 and lower
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}