QmlJSInspector: New Objects created

Send the engineid, objectid and parentid.

Change-Id: I7b340c1f20ba3eb3f1690d45b28819f6efaae013
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Aurindam Jana
2012-05-14 16:11:12 +02:00
parent fd5b22062c
commit b9d9bb7ba8
6 changed files with 32 additions and 8 deletions

View File

@@ -188,7 +188,10 @@ void BaseEngineDebugClient::messageReceived(const QByteArray &data)
ds >> type;
if (type == "OBJECT_CREATED") {
emit newObjects();
int engineId;
int objectId;
ds >> engineId >> objectId;
emit newObject(engineId, objectId, -1);
return;
}