Update
svn: r2417
This commit is contained in:
parent
c5088f1f40
commit
088e3ccd2d
@ -1,7 +1,7 @@
|
||||
2003-12-01 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||
* src/FamilyView.py (add_child_clicked): Return tuple of two
|
||||
empty strings when the surname guessing is set to None (otherwise
|
||||
it produced traceback and did nothing).
|
||||
* src/FamilyView.py (add_child_clicked): Call self.no_name()
|
||||
when the surname guessing is set to "None" (otherwise it produced
|
||||
traceback and did nothing).
|
||||
* doc/gramps-manual/C/custom.xml: Update.
|
||||
* doc/gramps-manual/C/gramps-manual-C.omf: Update.
|
||||
* doc/gramps.1.in: Update.
|
||||
|
@ -599,7 +599,7 @@ class FamilyView:
|
||||
elif autoname == 3:
|
||||
name = self.icelandic(0)
|
||||
else:
|
||||
name = ("","")
|
||||
name = self.no_name(0)
|
||||
person.getPrimaryName().setSurname(name[1])
|
||||
person.getPrimaryName().setSurnamePrefix(name[0])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user