aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libshiboken/basewrapper.cpp')
-rw-r--r--libshiboken/basewrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index a44a6bf95..737bfadc9 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -911,9 +911,9 @@ void setParent(PyObject* parent, PyObject* child)
if (!parentIsNull) {
if (!parent_->d->parentInfo)
parent_->d->parentInfo = new ParentInfo;
+
// do not re-add a child
- ChildrenList& children = parent_->d->parentInfo->children;
- if (std::find(children.begin(), children.end(), child_) != children.end())
+ if (child_->d->parentInfo && (child_->d->parentInfo->parent == parent_))
return;
}