mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-04 02:28:33 -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)
|
||||
{
|
||||
m_availableChannels.remove((ChannelAPI*) object);
|
||||
updateChannels();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ bool TestSourceInput::start()
|
||||
m_testSourceWorker->moveToThread(m_testSourceWorkerThread);
|
||||
|
||||
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);
|
||||
|
||||
m_testSourceWorker->setSamplerate(m_settings.m_sampleRate);
|
||||
|
Loading…
Reference in New Issue
Block a user