Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
2ec7f0b4
Commit
2ec7f0b4
authored
Jun 29, 2010
by
Roberto Raggi
Browse files
Share the debug object references.
parent
6559ec7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmljsinspector/qmljsdelta.cpp
View file @
2ec7f0b4
...
...
@@ -336,9 +336,12 @@ void Delta::operator()(Document::Ptr doc, Document::Ptr previousDoc)
_changes
.
clear
();
const
QUrl
url
=
QUrl
::
fromLocalFile
(
doc
->
fileName
());
ScriptBindingParser
bindingParser
(
doc
,
ClientProxy
::
instance
()
->
objectReferences
(
url
));
const
QList
<
QDeclarativeDebugObjectReference
>
references
=
ClientProxy
::
instance
()
->
objectReferences
(
url
);
ScriptBindingParser
bindingParser
(
doc
,
references
);
bindingParser
.
process
();
ScriptBindingParser
previousBindingParser
(
previousDoc
,
ClientProxy
::
instance
()
->
objectReferences
(
url
));
ScriptBindingParser
previousBindingParser
(
previousDoc
,
references
);
previousBindingParser
.
process
();
QHash
<
UiObjectMember
*
,
UiObjectMember
*>
preservedObjects
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment