Skip to content
Snippets Groups Projects
Commit 0c9af57d authored by Aurindam Jana's avatar Aurindam Jana Committed by Kai Koehne
Browse files

QmlAdapter: Set the debug client when status is enabled


Change-Id: Ife17f8c9fc7eeacbf1b3a8929cff7b4aa6918c86
Reviewed-by: default avatarKai Koehne <kai.koehne@nokia.com>
parent e29a3254
No related branches found
No related tags found
No related merge requests found
......@@ -164,8 +164,10 @@ void QmlAdapter::clientStatusChanged(QDeclarativeDebugClient::Status status)
logServiceStatusChange(serviceName, status);
}
void QmlAdapter::debugClientStatusChanged(QDeclarativeDebugClient::Status /*status*/)
void QmlAdapter::debugClientStatusChanged(QDeclarativeDebugClient::Status status)
{
if (status != QDeclarativeDebugClient::Enabled)
return;
QDeclarativeDebugClient *client = qobject_cast<QDeclarativeDebugClient*>(sender());
QTC_ASSERT(client, return);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment