QmlDebug: Add missing "emit"

Change-Id: Ib1affe0ca59c8ba01a9701fc9ee654f639122bd3
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Ulf Hermann
2017-01-04 19:13:13 +01:00
parent ac83af4ef0
commit 348b5ec8c5

View File

@@ -418,7 +418,7 @@ void QmlDebugConnection::newConnection()
connect(socket, static_cast<void (QLocalSocket::*)(QLocalSocket::LocalSocketError)> connect(socket, static_cast<void (QLocalSocket::*)(QLocalSocket::LocalSocketError)>
(&QLocalSocket::error), this, [this, d](QLocalSocket::LocalSocketError error) { (&QLocalSocket::error), this, [this, d](QLocalSocket::LocalSocketError error) {
logError(socketErrorToString(static_cast<QAbstractSocket::SocketError>(error))); emit logError(socketErrorToString(static_cast<QAbstractSocket::SocketError>(error)));
socketDisconnected(); socketDisconnected();
}); });