Update filters and plugins for new place objects

svn: r347
This commit is contained in:
Don Allingham
2001-08-19 03:53:02 +00:00
parent 3513293052
commit 49a308952b
12 changed files with 410 additions and 104 deletions

View File

@@ -479,15 +479,15 @@ class Merge:
name1 = person1.getPrimaryName().getName()
death1 = person1.getDeath().getDate()
dplace1 = person1.getDeath().getPlace()
dplace1 = person1.getDeath().getPlace().get_title()
birth1 = person1.getBirth().getDate()
bplace1 = person1.getBirth().getPlace()
bplace1 = person1.getBirth().getPlace().get_title()
name2 = person2.getPrimaryName().getName()
death2 = person2.getDeath().getDate()
dplace2 = person2.getDeath().getPlace()
dplace2 = person2.getDeath().getPlace().get_title()
birth2 = person2.getBirth().getDate()
bplace2 = person2.getBirth().getPlace()
bplace2 = person2.getBirth().getPlace().get_title()
if f2 and not f1:
self.topDialog.get_widget("bfather2").set_active(1)