1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 06:24:48 -04:00

Message pipes rework: renaming to legacy

This commit is contained in:
f4exb
2022-02-28 23:08:01 +01:00
parent c90d04e4b6
commit 74f917682b
26 changed files with 92 additions and 92 deletions
+4 -4
View File
@@ -138,11 +138,11 @@ bool AFC::handleMessage(const Message& cmd)
return true;
}
}
else if (MessagePipesCommon::MsgReportChannelDeleted::match(cmd))
else if (MessagePipesLegacyCommon::MsgReportChannelDeleted::match(cmd))
{
qDebug() << "AFC::handleMessage: MessagePipesCommon::MsgReportChannelDeleted";
MessagePipesCommon::MsgReportChannelDeleted& report = (MessagePipesCommon::MsgReportChannelDeleted&) cmd;
const MessagePipesCommon::ChannelRegistrationKey& channelKey = report.getChannelRegistrationKey();
qDebug() << "AFC::handleMessage: MessagePipesLegacyCommon::MsgReportChannelDeleted";
MessagePipesLegacyCommon::MsgReportChannelDeleted& report = (MessagePipesLegacyCommon::MsgReportChannelDeleted&) cmd;
const MessagePipesLegacyCommon::ChannelRegistrationKey& channelKey = report.getChannelRegistrationKey();
MainCore::instance()->getMessagePipes().unregisterChannelToFeature(channelKey.m_key, this, "settings");
return true;