* src/RelLib/_Family.py (get_sourcref_child_list): The ChildRefs were missing here. This now removes deleted Sources from ChildRefs.

svn: r7656
This commit is contained in:
Martin Hawlisch
2006-11-20 09:50:41 +00:00
parent be05c165ba
commit a4ad96f2c9
2 changed files with 6 additions and 1 deletions

View File

@@ -221,7 +221,8 @@ class Family(PrimaryObject,SourceBase,NoteBase,MediaBase,AttributeBase,
@return: Returns the list of child secondary child objects that may refer sources.
@rtype: list
"""
check_list = self.media_list + self.attribute_list + self.lds_ord_list
check_list = self.media_list + self.attribute_list + self.lds_ord_list + \
self.child_ref_list
return check_list
def get_referenced_handles(self):