From 85d8ead39ea03f55e140ce737839dbb203940b56 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Wed, 27 Oct 2010 13:02:19 +1000 Subject: Fix bug in QML debug client installation Allow QML debug clients to be installed between the connection being established and the hello message being received. --- src/declarative/debugger/qdeclarativedebugclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarative/debugger/qdeclarativedebugclient.cpp b/src/declarative/debugger/qdeclarativedebugclient.cpp index 977e58e..f5c5751 100644 --- a/src/declarative/debugger/qdeclarativedebugclient.cpp +++ b/src/declarative/debugger/qdeclarativedebugclient.cpp @@ -93,7 +93,7 @@ QDeclarativeDebugConnectionPrivate::QDeclarativeDebugConnectionPrivate(QDeclarat void QDeclarativeDebugConnectionPrivate::advertisePlugins() { - if (!q->isConnected() || !gotHello) + if (!q->isConnected()) return; QPacket pack; -- cgit v0.12