aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlwatcher.cpp
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2012-03-06 17:25:58 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-19 14:35:54 +0100
commitbfedb27838864e7acddebc6c0f731d617c3d1c22 (patch)
tree9f3eab3db7aa06004ccf148b74522ecdf0cda5b0 /src/qml/qml/qqmlwatcher.cpp
parente0e81d6f20e2190becd6354785a148c147f00ad8 (diff)
QmlEngineDebugService: Rename service to QmlDebugger
Rename service from QDeclarativeEngine to QmlDebugger. Send a response for each query. Change-Id: I01cfeaf3e4116bfd7029d170ee228c159973947c Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/qml/qml/qqmlwatcher.cpp')
-rw-r--r--src/qml/qml/qqmlwatcher.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlwatcher.cpp b/src/qml/qml/qqmlwatcher.cpp
index 500185762f..4eaa3d2c2a 100644
--- a/src/qml/qml/qqmlwatcher.cpp
+++ b/src/qml/qml/qqmlwatcher.cpp
@@ -166,13 +166,14 @@ bool QQmlWatcher::addWatch(int id, quint32 objectId, const QString &expr)
return false;
}
-void QQmlWatcher::removeWatch(int id)
+bool QQmlWatcher::removeWatch(int id)
{
if (!m_proxies.contains(id))
- return;
+ return false;
QList<QPointer<QQmlWatchProxy> > proxies = m_proxies.take(id);
qDeleteAll(proxies);
+ return true;
}
void QQmlWatcher::addPropertyWatch(int id, QObject *object, quint32 debugId, const QMetaProperty &property)