| 110 | } |
| 111 | |
| 112 | void CMakeServerImportJob::start() |
| 113 | { |
| 114 | if (m_server->isServerAvailable()) |
| 115 | doStart(); |
| 116 | else |
| 117 | connect(m_server.data(), &CMakeServer::connected, this, &CMakeServerImportJob::doStart); |
| 118 | } |
| 119 | |
| 120 | void CMakeServerImportJob::doStart() |
| 121 | { |
nothing calls this directly
no test coverage detected