1
0
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:
f4exb
2015-10-03 02:14:26 +02:00
parent 662b575fa1
commit cf9263f1ff
4 changed files with 56 additions and 8 deletions
+2 -4
View File
@@ -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";
}
}