forked from qt-creator/qt-creator
Fix warning: "Missing emit keyword on signal call"
[-Wclazy-incorrect-emit] Change-Id: I93bdc6e23cdaccf35c9899ae16870ccc65a54f80 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -399,7 +399,7 @@ void QmlDebugConnection::newConnection()
|
||||
|
||||
connect(socket, &QLocalSocket::stateChanged,
|
||||
this, [this](QLocalSocket::LocalSocketState state) {
|
||||
logStateChange(socketStateToString(static_cast<QAbstractSocket::SocketState>(state)));
|
||||
emit logStateChange(socketStateToString(static_cast<QAbstractSocket::SocketState>(state)));
|
||||
});
|
||||
|
||||
socketConnected();
|
||||
|
||||
Reference in New Issue
Block a user