mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 13:47:01 -04:00
Multiple sources in preset. Interim state #1
This commit is contained in:
@@ -264,11 +264,13 @@ void PluginManager::updateSampleSourceDevices()
|
||||
}
|
||||
}
|
||||
|
||||
void PluginManager::fillSampleSourceSelector(QComboBox* comboBox)
|
||||
int PluginManager::fillSampleSourceSelector(QComboBox* comboBox)
|
||||
{
|
||||
comboBox->clear();
|
||||
for(int i = 0; i < m_sampleSourceDevices.count(); i++)
|
||||
int i;
|
||||
for(i = 0; i < m_sampleSourceDevices.count(); i++)
|
||||
comboBox->addItem(m_sampleSourceDevices[i].m_displayName, i);
|
||||
return i;
|
||||
}
|
||||
|
||||
int PluginManager::selectSampleSource(int index)
|
||||
|
||||
Reference in New Issue
Block a user