- Don't pretend client sent some message from sending thread (fixes crash when client is already deleted by recieveng thread)
- Better exception handling in recieving thread
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}