| 630 | } |
| 631 | |
| 632 | void MainWindow::serverConnectionConfigureClient(const QString &clientName) |
| 633 | { |
| 634 | m_serverConnection.serverConfigDialogVisible(true); |
| 635 | ServerConfigDialog dialog(this, m_serverConfig); |
| 636 | if (dialog.addClient(clientName) && dialog.exec() == QDialog::Accepted) { |
| 637 | m_coreProcess.restart(); |
| 638 | } |
| 639 | m_serverConnection.serverConfigDialogVisible(false); |
| 640 | } |
| 641 | |
| 642 | ////////////////////////////////////////////////////////////////////////////// |
| 643 | // End slots |
nothing calls this directly
no test coverage detected