start of implementation of the save button, check if there's something to save and update TeamSelectionActivity if a change has been made
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}