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

Fix gcc warnings

This commit is contained in:
Jon Beniston
2021-03-18 20:33:52 +00:00
parent 37a19dee04
commit 24d8da247c
4 changed files with 33 additions and 6 deletions
+2
View File
@@ -287,12 +287,14 @@ void DATVModGUI::on_modulation_currentIndexChanged(int index)
void DATVModGUI::on_rollOff_currentIndexChanged(int index)
{
(void) index;
m_settings.m_rollOff = ui->rollOff->currentText().toFloat();
applySettings();
}
void DATVModGUI::on_fec_currentIndexChanged(int index)
{
(void) index;
m_settings.m_fec = DATVModSettings::mapCodeRate(ui->fec->currentText());
applySettings();
}