| 282 | } |
| 283 | |
| 284 | void |
| 285 | ProfileConfigTab::refreshAnalyzerTypeUi(void) |
| 286 | { |
| 287 | if (this->profile.getInterface() == SUSCAN_SOURCE_LOCAL_INTERFACE) { |
| 288 | this->ui->analyzerTypeCombo->setCurrentIndex(0); |
| 289 | } else { |
| 290 | this->ui->analyzerTypeCombo->setCurrentIndex(1); |
| 291 | } |
| 292 | |
| 293 | this->ui->analyzerParamsStackedWidget->setCurrentIndex( |
| 294 | this->ui->analyzerTypeCombo->currentIndex()); |
| 295 | } |
| 296 | |
| 297 | int |
| 298 | ProfileConfigTab::findRemoteProfileIndex(void) |
no test coverage detected