svn: r6377

This commit is contained in:
Don Allingham 2006-04-20 03:50:57 +00:00
parent 2f5aa02120
commit 91fd96968e
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,5 @@
2006-04-19 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_DbUtils.py: fix handle vs. ref issues
* src/RelLib/_Family.py: add remove_child_handle
* src/DataViews/_EventView.py: more GrampsTypes changes
* src/DataViews/_PedigreeView.py: more GrampsTypes changes

View File

@ -69,12 +69,12 @@ def remove_parent_from_family(db, person_handle, family_handle, trans=None):
elif family.get_mother_handle() == person_handle:
family.set_mother_handle(None)
child_list = family.get_child_handle_list()
child_list = family.get_child_ref_list()
if (not family.get_father_handle() and not family.get_mother_handle() and
len(child_list) <= 1):
db.remove_family(family_handle, trans)
if child_list:
child = db.get_person_from_handle(child_list[0])
child = db.get_person_from_handle(child_list[0].ref)
child.remove_parent_family_handle(family_handle)
db.commit_person(child, trans)
msg = _("Remove father from family")
@ -102,12 +102,12 @@ def remove_child_from_family(db, person_handle, family_handle, trans=None):
else:
need_commit = False
child_list = family.get_child_handle_list()
child_list = family.get_child_ref_list()
if (not family.get_father_handle() and not family.get_mother_handle() and
len(child_list) <= 1):
db.remove_family(family_handle, trans)
if child_list:
child = db.get_person_from_handle(child_list[0])
child = db.get_person_from_handle(child_list[0].ref)
child.remove_parent_family_handle(family_handle)
db.commit_person(child, trans)
else: