1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Fixed -Wunused-parameter warnings

This commit is contained in:
f4exb
2020-11-14 11:13:32 +01:00
parent f668863aed
commit 55eb6cc951
157 changed files with 290 additions and 237 deletions
@@ -376,12 +376,14 @@ void GS232ControllerGUI::on_channel_currentIndexChanged(int index)
void GS232ControllerGUI::on_serialPort_currentIndexChanged(int index)
{
(void) index;
m_settings.m_serialPort = ui->serialPort->currentText();
applySettings();
}
void GS232ControllerGUI::on_baudRate_currentIndexChanged(int index)
{
(void) index;
m_settings.m_baudRate = ui->baudRate->currentText().toInt();
applySettings();
}