mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 10:33:29 -05:00
SDRDaemon source: fixed UDP socket readyRead signal connection (removed queued connection flag)
This commit is contained in:
parent
0981d04904
commit
1ee75f127d
@ -96,7 +96,7 @@ void SDRdaemonSourceUDPHandler::start()
|
||||
|
||||
if (!m_dataConnected)
|
||||
{
|
||||
connect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead()), Qt::QueuedConnection); // , Qt::QueuedConnection
|
||||
connect(m_dataSocket, SIGNAL(readyRead()), this, SLOT(dataReadyRead())); //, Qt::QueuedConnection);
|
||||
|
||||
if (m_dataSocket->bind(m_dataAddress, m_dataPort))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user