| 530 | applyNetworkSettings(); |
| 531 | } |
| 532 | void MainWindow::toggleTCPServer() |
| 533 | { |
| 534 | QSettings settings(SETTINGSFILE, QSettings::IniFormat); |
| 535 | settings.setValue("tcpServerEnable", !settings.value("tcpServerEnable", true).toBool()); |
| 536 | applyNetworkSettings(); |
| 537 | } |
| 538 | void MainWindow::toggleSSLServer() |
| 539 | { |
| 540 | QDEBUG(); |
nothing calls this directly
no outgoing calls
no test coverage detected