| 151 | } |
| 152 | |
| 153 | void SingleInstance::handleNewConnection() |
| 154 | { |
| 155 | const QLocalSocket *const socket = m_server->nextPendingConnection(); |
| 156 | connect(socket, &QLocalSocket::readChannelFinished, this, &SingleInstance::readArgs); |
| 157 | } |
| 158 | |
| 159 | void SingleInstance::readArgs() |
| 160 | { |
nothing calls this directly
no outgoing calls
no test coverage detected