* src/gramps.glade: change "Edit..." buttons to an image

* src/plugins/CountAncestors.py: handle duplicates across
generations


svn: r3669
This commit is contained in:
Don Allingham
2004-10-25 02:37:18 +00:00
parent 6c9873363d
commit e185199d6a
4 changed files with 342 additions and 313 deletions

View File

@ -50,6 +50,7 @@ class CountAncestors:
"destroy_passed_object" : Utils.destroy_passed_object,
})
thisgen = Set()
all = Set()
allgen = 0
thisgen.add(person.get_handle())
@ -75,10 +76,12 @@ class CountAncestors:
family = database.get_family_from_handle(family_handle)
father_handle = family.get_father_handle()
mother_handle = family.get_mother_handle()
if father_handle:
if father_handle and father_handle not in all:
thisgen.add(father_handle)
if mother_handle:
all.add(father_handle)
if mother_handle and mother_handle not in all:
thisgen.add(mother_handle)
all.add(mother_handle)
allgen += len(thisgen)
text += _("Total ancestors in generations %d to -1 is %d.\n") % (gen, allgen)