| 524 | } |
| 525 | |
| 526 | void MainWindow::toggleUDPServer() |
| 527 | { |
| 528 | QSettings settings(SETTINGSFILE, QSettings::IniFormat); |
| 529 | settings.setValue("udpServerEnable", !settings.value("udpServerEnable", true).toBool()); |
| 530 | applyNetworkSettings(); |
| 531 | } |
| 532 | void MainWindow::toggleTCPServer() |
| 533 | { |
| 534 | QSettings settings(SETTINGSFILE, QSettings::IniFormat); |
nothing calls this directly
no outgoing calls
no test coverage detected