mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-29 05:22:25 -04:00
BasebandSampleSource: disambiguate handleWriteToFifo
This commit is contained in:
parent
8123f128b2
commit
e97405ec16
@ -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);
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ protected:
|
||||
|
||||
protected slots:
|
||||
void handleInputMessages();
|
||||
void handleWriteToFifo(int nbSamples);
|
||||
void handleWriteToSampleFifo(int nbSamples);
|
||||
void handleWriteToDeviceFifo(int nbSamples);
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user