| 36 | } |
| 37 | |
| 38 | void TcpClientDevice::socketError() |
| 39 | { |
| 40 | if (m_socket->error() == QAbstractSocket::ConnectionRefusedError) |
| 41 | emit transientError(); |
| 42 | else |
| 43 | emit persistentError(m_socket->errorString()); |
| 44 | } |
nothing calls this directly
no test coverage detected