diff -r 8e167aa3b2e4 -r 77ab8735401d QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Wed Oct 15 11:54:06 2008 +0000 +++ b/QTfrontend/hwform.cpp Wed Oct 15 15:02:39 2008 +0000 @@ -702,7 +702,9 @@ CreateGame(ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget, ammo); connect(game, SIGNAL(SendNet(const QByteArray &)), hwnet, SLOT(SendNet(const QByteArray &))); + connect(game, SIGNAL(SendChat(const QString &)), hwnet, SLOT(chatLineToNet(const QString &))); connect(hwnet, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); + connect(hwnet, SIGNAL(chatStringFromNet(const QString &)), game, SLOT(FromNetChat(const QString &))); game->StartNet(); }