1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Device source API: use more meaningful names for get/set sample source

This commit is contained in:
f4exb
2017-09-15 08:45:22 +02:00
parent 1c9f11a5dc
commit 289fc2a89f
13 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -68,12 +68,12 @@ void DeviceSourceAPI::removeThreadedSink(ThreadedBasebandSampleSink* sink)
m_deviceSourceEngine->removeThreadedSink(sink);
}
void DeviceSourceAPI::setSource(DeviceSampleSource* source)
void DeviceSourceAPI::setSampleSource(DeviceSampleSource* source)
{
m_deviceSourceEngine->setSource(source);
}
DeviceSampleSource *DeviceSourceAPI::getSource()
DeviceSampleSource *DeviceSourceAPI::getSampleSource()
{
return m_deviceSourceEngine->getSource();
}