* src/gramps.glade: change "Edit..." buttons to an image
* src/plugins/CountAncestors.py: handle duplicates across generations svn: r3669
This commit is contained in:
parent
61e8f7b7e3
commit
5268556f7a
@ -1,3 +1,8 @@
|
||||
2004-10-24 Don Allingham <dallingham@users.sourceforge.net>
|
||||
* src/gramps.glade: change "Edit..." buttons to an image
|
||||
* src/plugins/CountAncestors.py: handle duplicates across
|
||||
generations
|
||||
|
||||
2004-10-24 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||
* src/MediaView.py: Typo.
|
||||
|
||||
|
@ -204,8 +204,6 @@ def import2(database, filename, cb, codeset, use_trans):
|
||||
if close:
|
||||
statusWindow.destroy()
|
||||
|
||||
print database.person_map.stat()
|
||||
|
||||
if cb:
|
||||
statusWindow.destroy()
|
||||
cb(1)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user