tools/drawMapTest/main.cpp
author nemo
Thu, 31 Oct 2013 20:50:20 -0400
changeset 9663 1fa74f92555d
parent 4425 2314bb0c433d
permissions -rw-r--r--
so, lack of this was causing the team area to be too squat. at this point tho, I get the impression qt.css is outright replaced by birthday/christmas. This seems inconvenient, and if so, we should merge in changes to qt.css which has quite a bit more stuff in it

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}