same for chat. changed the paths to: css/qt.css css/chat.css
note: display:none is not supported by QTextBrowser, I might pimp it up to do so
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}