mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-03 06:24:48 -04:00
Added a save settings button to the main window
This commit is contained in:
@@ -497,8 +497,6 @@ DSPEngine::State DSPEngine::gotoError(const QString& errorMessage)
|
||||
|
||||
void DSPEngine::handleSetSource(SampleSource* source)
|
||||
{
|
||||
qDebug() << "DSPEngine::handleSetSource";
|
||||
|
||||
gotoIdle();
|
||||
|
||||
if(m_sampleSource != 0)
|
||||
@@ -510,12 +508,12 @@ void DSPEngine::handleSetSource(SampleSource* source)
|
||||
|
||||
if(m_sampleSource != 0)
|
||||
{
|
||||
qDebug() << " - set " << source->getDeviceDescription().toStdString().c_str();
|
||||
qDebug() << "DSPEngine::handleSetSource: set " << source->getDeviceDescription().toStdString().c_str();
|
||||
connect(m_sampleSource->getSampleFifo(), SIGNAL(dataReady()), this, SLOT(handleData()), Qt::QueuedConnection);
|
||||
}
|
||||
else
|
||||
{
|
||||
qDebug() << " - set none";
|
||||
qDebug() << "DSPEngine::handleSetSource: set none";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user