Connect signals to slots

This commit is contained in:
Jon Beniston 2023-03-03 18:02:18 +00:00
parent cd59307806
commit d97d1f7ed0
1 changed files with 2 additions and 0 deletions

View File

@ -783,6 +783,8 @@ void AISDemodGUI::makeUIConnections()
QObject::connect(ui->logEnable, &ButtonSwitch::clicked, this, &AISDemodGUI::on_logEnable_clicked);
QObject::connect(ui->logFilename, &QToolButton::clicked, this, &AISDemodGUI::on_logFilename_clicked);
QObject::connect(ui->logOpen, &QToolButton::clicked, this, &AISDemodGUI::on_logOpen_clicked);
QObject::connect(ui->channel1, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AISDemodGUI::on_channel1_currentIndexChanged);
QObject::connect(ui->channel2, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AISDemodGUI::on_channel2_currentIndexChanged);
}
void AISDemodGUI::updateAbsoluteCenterFrequency()