- Fix applying vote result
- Votes expiring (I'm sure it doesn't even build, but my ghc is broken for now, hoping for the best)
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}