# HG changeset patch # User unc0rr # Date 1361396114 -14400 # Node ID 124b49fa408ba48a21279a65081158fee4832594 # Parent bf671ddf467cfdf709c978587cd8fd68122cb5db We need this to fix hedgehog numbers desync (workarounded in previous revision) diff -r bf671ddf467c -r 124b49fa408b QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Thu Feb 21 01:27:21 2013 +0400 +++ b/QTfrontend/hwform.cpp Thu Feb 21 01:35:14 2013 +0400 @@ -1202,7 +1202,7 @@ connect(hwnet, SIGNAL(LeftRoom(const QString&)), this, SLOT(NetLeftRoom(const QString&)), Qt::QueuedConnection); connect(hwnet, SIGNAL(AddNetTeam(const HWTeam&)), this, SLOT(AddNetTeam(const HWTeam&)), Qt::QueuedConnection); connect(hwnet, SIGNAL(RemoveNetTeam(const HWTeam&)), this, SLOT(RemoveNetTeam(const HWTeam&)), Qt::QueuedConnection); - connect(hwnet, SIGNAL(TeamAccepted(const QString&)), this, SLOT(NetTeamAccepted(const QString&)), Qt::QueuedConnection); + connect(hwnet, SIGNAL(TeamAccepted(const QString&)), this, SLOT(NetTeamAccepted(const QString&))); connect(hwnet, SIGNAL(NickRegistered(const QString&)), this, SLOT(NetNickRegistered(const QString&)), Qt::QueuedConnection); connect(hwnet, SIGNAL(NickNotRegistered(const QString&)), this, SLOT(NetNickNotRegistered(const QString&)), Qt::QueuedConnection); connect(hwnet, SIGNAL(NickTaken(const QString&)), this, SLOT(NetNickTaken(const QString&)), Qt::QueuedConnection);