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 <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}