MCPcopy Create free account
hub / github.com/QNapi/qnapi / readyRead

Method readyRead

gui/src/qcumber/qmanagedsocket.cpp:39–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected