more ChildRef changes
svn: r6338
This commit is contained in:
parent
deaca6ea3c
commit
9ee7492b07
@ -10,6 +10,8 @@
|
|||||||
* src/plugins/TestcaseGenerator.py: Adapt to changes in RelLib
|
* src/plugins/TestcaseGenerator.py: Adapt to changes in RelLib
|
||||||
* src/Utils.py: Adapt to changes in RelLib
|
* src/Utils.py: Adapt to changes in RelLib
|
||||||
|
|
||||||
|
* src/ToolTips.py: Adapt to changes in RelLib
|
||||||
|
|
||||||
2006-04-13 Don Allingham <don@gramps-project.org>
|
2006-04-13 Don Allingham <don@gramps-project.org>
|
||||||
* src/DataViews/_FamilyView.py: remove bad tab
|
* src/DataViews/_FamilyView.py: remove bad tab
|
||||||
|
|
||||||
|
@ -231,8 +231,8 @@ class FamilyTip:
|
|||||||
s +="\n <span weight=\"bold\">%s:</span> %s" % (
|
s +="\n <span weight=\"bold\">%s:</span> %s" % (
|
||||||
_("Mother"),escape(mother.get_primary_name().get_name()))
|
_("Mother"),escape(mother.get_primary_name().get_name()))
|
||||||
|
|
||||||
for chandle in self._obj.get_child_handle_list():
|
for cref in self._obj.get_child_ref_list():
|
||||||
child = self._db.get_person_from_handle(chandle)
|
child = self._db.get_person_from_handle(cref.ref)
|
||||||
s +="\n <span weight=\"bold\">%s:</span> %s" % (
|
s +="\n <span weight=\"bold\">%s:</span> %s" % (
|
||||||
_("Child"),escape(child.get_primary_name().get_name()))
|
_("Child"),escape(child.get_primary_name().get_name()))
|
||||||
|
|
||||||
@ -246,4 +246,3 @@ CLASS_MAP = {
|
|||||||
RelLib.Person : PersonTip,
|
RelLib.Person : PersonTip,
|
||||||
RelLib.Family : FamilyTip
|
RelLib.Family : FamilyTip
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user