# HG changeset patch # User displacer # Date 1160831631 0 # Node ID 8a7123b84d1bb07400fe5a8f7838d17e9f4470c0 # Parent 993cf173218b32829e15f348065371885244e2e4 multiple classes accept signal receive bugfix diff -r 993cf173218b -r 8a7123b84d1b QTfrontend/tcpBase.cpp --- a/QTfrontend/tcpBase.cpp Thu Oct 12 18:52:00 2006 +0000 +++ b/QTfrontend/tcpBase.cpp Sat Oct 14 13:13:51 2006 +0000 @@ -41,7 +41,6 @@ .arg(IPCServer->errorString())); } } - connect(IPCServer, SIGNAL(newConnection()), this, SLOT(NewConnection())); } void TCPBase::NewConnection() @@ -60,6 +59,7 @@ void TCPBase::RealStart() { + connect(IPCServer, SIGNAL(newConnection()), this, SLOT(NewConnection())); IPCSocket = 0; QProcess * process;