| 1382 | } |
| 1383 | |
| 1384 | void |
| 1385 | ProfileConfigTab::onChangeConnectionType(void) |
| 1386 | { |
| 1387 | if (this->ui->useNetworkProfileRadio->isChecked()) { |
| 1388 | this->onRemoteProfileSelected(); |
| 1389 | this->ui->useHostPortRadio->setChecked(false); |
| 1390 | } |
| 1391 | |
| 1392 | if (this->ui->useHostPortRadio->isChecked()) { |
| 1393 | this->onRemoteParamsChanged(); |
| 1394 | this->ui->useNetworkProfileRadio->setChecked(false); |
| 1395 | } |
| 1396 | |
| 1397 | this->configChanged(true); |
| 1398 | this->refreshUiState(); |
| 1399 | } |
| 1400 | |
| 1401 | void |
| 1402 | ProfileConfigTab::onRefreshRemoteDevices(void) |
no test coverage detected