Lime: Add missing return value.

pull/1415/head
Jon Beniston 2022-09-16 15:32:56 +01:00
rodzic 38120a7ce3
commit a46f5a635e
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -211,6 +211,8 @@ bool LimeSDROutputGUI::handleMessage(const Message& message)
} else {
ui->calibrationLabel->setStyleSheet("QLabel { background-color : red; }");
}
return true;
}
else if (LimeSDROutput::MsgReportStreamInfo::match(message))
{

Wyświetl plik

@ -198,6 +198,8 @@ bool LimeSDRInputGUI::handleMessage(const Message& message)
} else {
ui->calibrationLabel->setStyleSheet("QLabel { background-color : red; }");
}
return true;
}
else if (LimeSDRInput::MsgReportStreamInfo::match(message))
{