| 427 | } |
| 428 | |
| 429 | void SyncthingLauncher::handleProcessReadyRead() |
| 430 | { |
| 431 | const auto data = m_process.readAll(); |
| 432 | if (m_logFile.isOpen()) { |
| 433 | m_logFile.write(data); |
| 434 | } |
| 435 | handleOutputAvailable(std::numeric_limits<int>::max(), data); |
| 436 | } |
| 437 | |
| 438 | void SyncthingLauncher::handleProcessStateChanged(QProcess::ProcessState newState) |
| 439 | { |
nothing calls this directly
no outgoing calls
no test coverage detected