1
0
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:
f4exb 2018-05-09 09:57:26 +02:00
parent 0981d04904
commit 1ee75f127d

View File

@ -96,7 +96,7 @@ void SDRdaemonSourceUDPHandler::start()
if (!m_dataConnected) 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)) if (m_dataSocket->bind(m_dataAddress, m_dataPort))
{ {