Merge pull request #1415 from srcejon/lime_return_val

Lime: Add missing return value.
pull/1418/head^2
Edouard Griffiths 2022-09-17 12:50:10 +02:00 zatwierdzone przez GitHub
commit 9b3f438937
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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))
{