mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
Multi device support: removed useless handle message method in plugin manager
This commit is contained in:
parent
9e77782da9
commit
a9cda881d6
@ -221,32 +221,32 @@ void PluginManager::freeAll()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PluginManager::handleMessage(const Message& message)
|
//bool PluginManager::handleMessage(const Message& message)
|
||||||
{
|
//{
|
||||||
if (m_sampleSourcePluginGUI != 0)
|
// if (m_sampleSourcePluginGUI != 0)
|
||||||
{
|
// {
|
||||||
if ((message.getDestination() == 0) || (message.getDestination() == m_sampleSourcePluginGUI))
|
// if ((message.getDestination() == 0) || (message.getDestination() == m_sampleSourcePluginGUI))
|
||||||
{
|
// {
|
||||||
if (m_sampleSourcePluginGUI->handleMessage(message))
|
// if (m_sampleSourcePluginGUI->handleMessage(message))
|
||||||
{
|
// {
|
||||||
return true;
|
// return true;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
for (ChannelInstanceRegistrations::iterator it = m_channelInstanceRegistrations.begin(); it != m_channelInstanceRegistrations.end(); ++it)
|
// for (ChannelInstanceRegistrations::iterator it = m_channelInstanceRegistrations.begin(); it != m_channelInstanceRegistrations.end(); ++it)
|
||||||
{
|
// {
|
||||||
if ((message.getDestination() == 0) || (message.getDestination() == it->m_gui))
|
// if ((message.getDestination() == 0) || (message.getDestination() == it->m_gui))
|
||||||
{
|
// {
|
||||||
if (it->m_gui->handleMessage(message))
|
// if (it->m_gui->handleMessage(message))
|
||||||
{
|
// {
|
||||||
return true;
|
// return true;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
return false;
|
// return false;
|
||||||
}
|
//}
|
||||||
|
|
||||||
void PluginManager::updateSampleSourceDevices()
|
void PluginManager::updateSampleSourceDevices()
|
||||||
{
|
{
|
||||||
|
@ -54,7 +54,7 @@ public:
|
|||||||
|
|
||||||
void freeAll();
|
void freeAll();
|
||||||
|
|
||||||
bool handleMessage(const Message& message);
|
// bool handleMessage(const Message& message);
|
||||||
|
|
||||||
void updateSampleSourceDevices();
|
void updateSampleSourceDevices();
|
||||||
void fillSampleSourceSelector(QComboBox* comboBox);
|
void fillSampleSourceSelector(QComboBox* comboBox);
|
||||||
|
Loading…
Reference in New Issue
Block a user