1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

BasebandSampleSource: disambiguate handleWriteToFifo

This commit is contained in:
f4exb 2019-10-22 05:42:37 +02:00
parent 8123f128b2
commit e97405ec16
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ BasebandSampleSource::BasebandSampleSource() :
m_deviceSampleFifo(0)
{
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
connect(&m_sampleFifo, SIGNAL(dataWrite(int)), this, SLOT(handleWriteToFifo(int)));
connect(&m_sampleFifo, SIGNAL(dataWrite(int)), this, SLOT(handleWriteToSampleFifo(int)));
}
BasebandSampleSource::~BasebandSampleSource()
@ -45,7 +45,7 @@ void BasebandSampleSource::handleInputMessages()
}
}
void BasebandSampleSource::handleWriteToFifo(int nbSamples)
void BasebandSampleSource::handleWriteToSampleFifo(int nbSamples)
{
handleWriteToFifo(&m_sampleFifo, nbSamples);
}

View File

@ -71,7 +71,7 @@ protected:
protected slots:
void handleInputMessages();
void handleWriteToFifo(int nbSamples);
void handleWriteToSampleFifo(int nbSamples);
void handleWriteToDeviceFifo(int nbSamples);
};