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
Marco Bubke
flatpak-qt-creator
Commits
40f86f40
Commit
40f86f40
authored
Nov 25, 2010
by
Marco Bubke
Browse files
QmlDesigner.NodeInstances: Check if object is null
parent
e7ae2466
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/designercore/instances/objectnodeinstance.cpp
View file @
40f86f40
...
...
@@ -565,7 +565,7 @@ QStringList allPropertyNames(QObject *object, const QString &baseName = QString(
QStringList
propertyNameList
;
if
(
inspectedObjects
->
contains
(
object
))
if
(
inspectedObjects
==
0
||
inspectedObjects
->
contains
(
object
))
return
propertyNameList
;
inspectedObjects
->
append
(
object
);
...
...
@@ -835,7 +835,7 @@ QStringList propertyNameForWritableProperties(QObject *object, const QString &ba
{
QStringList
propertyNameList
;
if
(
inspectedObjects
->
contains
(
object
))
if
(
inspectedObjects
==
0
||
inspectedObjects
->
contains
(
object
))
return
propertyNameList
;
inspectedObjects
->
append
(
object
);
...
...
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