forked from qt-creator/qt-creator
QmlJsInspector: Fix typo in method name
This commit is contained in:
@@ -356,11 +356,11 @@ void ClientProxy::contextChanged()
|
||||
m_objectTreeQuery.clear();
|
||||
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()) {
|
||||
QDeclarativeDebugObjectQuery* query = m_engineClient->queryObjectRecursive(obj, this);
|
||||
@@ -374,7 +374,7 @@ void ClientProxy::fetchContextObjectRecusrsive(const QDeclarativeDebugContextRef
|
||||
}
|
||||
}
|
||||
foreach (const QDeclarativeDebugContextReference& child, context.contexts()) {
|
||||
fetchContextObjectRecusrsive(child);
|
||||
fetchContextObjectRecursive(child);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -133,7 +133,7 @@ private slots:
|
||||
void onCurrentObjectsChanged(const QList<int> &debugIds, bool requestIfNeeded = true);
|
||||
void updateEngineList();
|
||||
void objectTreeFetched(QDeclarativeDebugQuery::State state = QDeclarativeDebugQuery::Completed);
|
||||
void fetchContextObjectRecusrsive(const QmlJsDebugClient::QDeclarativeDebugContextReference& context);
|
||||
void fetchContextObjectRecursive(const QmlJsDebugClient::QDeclarativeDebugContextReference& context);
|
||||
void newObjects();
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user