1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 17:28:50 -05:00

Merge pull request #1415 from srcejon/lime_return_val

Lime: Add missing return value.
This commit is contained in:
Edouard Griffiths 2022-09-17 12:50:10 +02:00 committed by GitHub
commit 9b3f438937
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -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))
{

View File

@ -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))
{