QmlJsInspector: Fix typo in method name

This commit is contained in:
Kai Koehne
2010-12-02 11:15:32 +01:00
parent 46a30158df
commit f179c9362f
2 changed files with 4 additions and 4 deletions

View File

@@ -356,11 +356,11 @@ void ClientProxy::contextChanged()
m_objectTreeQuery.clear(); m_objectTreeQuery.clear();
m_requestObjectsTimer.stop(); m_requestObjectsTimer.stop();
fetchContextObjectRecusrsive(rootContext); fetchContextObjectRecursive(rootContext);
} }
} }
void ClientProxy::fetchContextObjectRecusrsive(const QDeclarativeDebugContextReference& context) void ClientProxy::fetchContextObjectRecursive(const QDeclarativeDebugContextReference& context)
{ {
foreach (const QDeclarativeDebugObjectReference & obj, context.objects()) { foreach (const QDeclarativeDebugObjectReference & obj, context.objects()) {
QDeclarativeDebugObjectQuery* query = m_engineClient->queryObjectRecursive(obj, this); QDeclarativeDebugObjectQuery* query = m_engineClient->queryObjectRecursive(obj, this);
@@ -374,7 +374,7 @@ void ClientProxy::fetchContextObjectRecusrsive(const QDeclarativeDebugContextRef
} }
} }
foreach (const QDeclarativeDebugContextReference& child, context.contexts()) { foreach (const QDeclarativeDebugContextReference& child, context.contexts()) {
fetchContextObjectRecusrsive(child); fetchContextObjectRecursive(child);
} }
} }

View File

@@ -133,7 +133,7 @@ private slots:
void onCurrentObjectsChanged(const QList<int> &debugIds, bool requestIfNeeded = true); void onCurrentObjectsChanged(const QList<int> &debugIds, bool requestIfNeeded = true);
void updateEngineList(); void updateEngineList();
void objectTreeFetched(QDeclarativeDebugQuery::State state = QDeclarativeDebugQuery::Completed); void objectTreeFetched(QDeclarativeDebugQuery::State state = QDeclarativeDebugQuery::Completed);
void fetchContextObjectRecusrsive(const QmlJsDebugClient::QDeclarativeDebugContextReference& context); void fetchContextObjectRecursive(const QmlJsDebugClient::QDeclarativeDebugContextReference& context);
void newObjects(); void newObjects();
private: private: