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

Renamed createRxChannel to createRxChannelGUI to described only the GUI will be created there in the future

This commit is contained in:
f4exb
2017-11-07 23:49:27 +01:00
parent fabb5ea6ba
commit 9ff05baa70
27 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ void PluginManager::createRxChannelInstance(int channelPluginIndex, DeviceUISet
if (channelPluginIndex < m_rxChannelRegistrations.size())
{
PluginInterface *pluginInterface = m_rxChannelRegistrations[channelPluginIndex].m_plugin;
pluginInterface->createRxChannel(m_rxChannelRegistrations[channelPluginIndex].m_channelId, deviceUISet);
pluginInterface->createRxChannelGUI(m_rxChannelRegistrations[channelPluginIndex].m_channelId, deviceUISet);
}
}