mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-04 09:55:22 -04:00
Removed unncecessary call to updateChannels in VORLocalizer and DemodAnalyzer. Fixes #1572
This commit is contained in:
parent
abe4798f9c
commit
46db55f1db
@ -310,7 +310,6 @@ void VORLocalizer::handleMessagePipeToBeDeleted(int reason, QObject* object)
|
|||||||
if ((reason == 0) && m_availableChannels.contains((ChannelAPI*) object)) // producer (channel)
|
if ((reason == 0) && m_availableChannels.contains((ChannelAPI*) object)) // producer (channel)
|
||||||
{
|
{
|
||||||
m_availableChannels.remove((ChannelAPI*) object);
|
m_availableChannels.remove((ChannelAPI*) object);
|
||||||
updateChannels();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ bool TestSourceInput::start()
|
|||||||
m_testSourceWorker->moveToThread(m_testSourceWorkerThread);
|
m_testSourceWorker->moveToThread(m_testSourceWorkerThread);
|
||||||
|
|
||||||
QObject::connect(m_testSourceWorkerThread, &QThread::started, m_testSourceWorker, &TestSourceWorker::startWork);
|
QObject::connect(m_testSourceWorkerThread, &QThread::started, m_testSourceWorker, &TestSourceWorker::startWork);
|
||||||
QObject::connect(m_testSourceWorkerThread, &QThread::finished, m_testSourceWorker, &QObject::deleteLater);
|
QObject::connect(m_testSourceWorkerThread, &QThread::finished, m_testSourceWorker, &QObject::deleteLater, Qt::QueuedConnection);
|
||||||
QObject::connect(m_testSourceWorkerThread, &QThread::finished, m_testSourceWorkerThread, &QThread::deleteLater);
|
QObject::connect(m_testSourceWorkerThread, &QThread::finished, m_testSourceWorkerThread, &QThread::deleteLater);
|
||||||
|
|
||||||
m_testSourceWorker->setSamplerate(m_settings.m_sampleRate);
|
m_testSourceWorker->setSamplerate(m_settings.m_sampleRate);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user