| 37 | void QManagedSocket::send(const QByteArray &msg) { pSocket->write(msg); } |
| 38 | |
| 39 | void QManagedSocket::readyRead() { |
| 40 | if (pSocket) { |
| 41 | QString msg = QString::fromUtf8(pSocket->readAll()); |
| 42 | |
| 43 | emit message(msg); |
| 44 | emit message(msg, this); |
| 45 | } |
| 46 | } |
nothing calls this directly
no outgoing calls
no test coverage detected