1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-05 14:47:50 -04:00

Fix types

This commit is contained in:
srcejon 2023-09-06 15:51:05 +01:00
parent 26439500f7
commit 73ab056a36

View File

@ -4763,7 +4763,7 @@ bool WebAPIRequestMapper::getChannelActions(
} }
else if (channelActionsKey == "PSK31ModActions") else if (channelActionsKey == "PSK31ModActions")
{ {
channelActions->setPsk31ModActions(new SWGSDRangel::SWGPsk31ModActions()); channelActions->setPsk31ModActions(new SWGSDRangel::SWGPSK31ModActions());
channelActions->getPsk31ModActions()->fromJsonObject(actionsJsonObject); channelActions->getPsk31ModActions()->fromJsonObject(actionsJsonObject);
} }
else if (channelActionsKey == "RTTYModActions") else if (channelActionsKey == "RTTYModActions")
@ -5485,7 +5485,7 @@ void WebAPIRequestMapper::resetChannelReport(SWGSDRangel::SWGChannelReport& chan
channelReport.setNoiseFigureReport(nullptr); channelReport.setNoiseFigureReport(nullptr);
channelReport.setIeee802154ModReport(nullptr); channelReport.setIeee802154ModReport(nullptr);
channelReport.setPacketModReport(nullptr); channelReport.setPacketModReport(nullptr);
channelReport.setPsk31Report(nullptr); channelReport.setPsk31ModReport(nullptr);
channelReport.setRadioAstronomyReport(nullptr); channelReport.setRadioAstronomyReport(nullptr);
channelReport.setRadioClockReport(nullptr); channelReport.setRadioClockReport(nullptr);
channelReport.setRadiosondeDemodReport(nullptr); channelReport.setRadiosondeDemodReport(nullptr);