* various: change try_to_find_*_from_handle to

get_*_from_handle


svn: r3355
This commit is contained in:
Don Allingham
2004-08-07 05:16:57 +00:00
parent cc03d489a2
commit 4fd3c41ceb
81 changed files with 660 additions and 623 deletions

View File

@@ -172,8 +172,8 @@ class RelationshipCalculator:
family_handle = person.get_main_parents_family_handle()
family = self.db.find_family_from_handle(family_handle)
if family != None:
father = self.db.try_to_find_person_from_handle(family.get_father_handle())
mother = self.db.try_to_find_person_from_handle(family.get_mother_handle())
father = self.db.get_person_from_handle(family.get_father_handle())
mother = self.db.get_person_from_handle(family.get_mother_handle())
self.apply_filter(father,index+1,plist,pmap)
self.apply_filter(mother,index+1,plist,pmap)