* src/RelLib.py (add_parent_family_handle,
change_parent_family_handle): Correct the docstring to reflect tuple relationships. svn: r4804
This commit is contained in:
parent
c2be8cceec
commit
a3e0bf4648
@ -4,6 +4,9 @@
|
|||||||
* src/SelectChild.py: Support for (int,str) relationships.
|
* src/SelectChild.py: Support for (int,str) relationships.
|
||||||
* src/gramps.glade (selec_child,modparents,familyDialog): Replace
|
* src/gramps.glade (selec_child,modparents,familyDialog): Replace
|
||||||
ComboBoxes with ComboBoxEntries.
|
ComboBoxes with ComboBoxEntries.
|
||||||
|
* src/RelLib.py (add_parent_family_handle,
|
||||||
|
change_parent_family_handle): Correct the docstring to reflect
|
||||||
|
tuple relationships.
|
||||||
|
|
||||||
2005-06-07 Alex Roitman <shura@gramps-project.org>
|
2005-06-07 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/gramps.glade (selecty_person): Change positioning; add icon.
|
* src/gramps.glade (selecty_person): Change positioning; add icon.
|
||||||
|
@ -1558,9 +1558,9 @@ class Person(PrimaryObject,PrivateSourceNote,MediaBase,AttributeBase):
|
|||||||
Person's L{Family} list.
|
Person's L{Family} list.
|
||||||
@type family_handle: str
|
@type family_handle: str
|
||||||
@param mrel: relationship between the Person and its mother
|
@param mrel: relationship between the Person and its mother
|
||||||
@type mrel: str
|
@type mrel: tuple
|
||||||
@param frel: relationship between the Person and its father
|
@param frel: relationship between the Person and its father
|
||||||
@type frel: str
|
@type frel: tuple
|
||||||
"""
|
"""
|
||||||
self.parent_family_list.append((family_handle,mrel,frel))
|
self.parent_family_list.append((family_handle,mrel,frel))
|
||||||
|
|
||||||
@ -1602,9 +1602,9 @@ class Person(PrimaryObject,PrivateSourceNote,MediaBase,AttributeBase):
|
|||||||
Person's L{Family} list.
|
Person's L{Family} list.
|
||||||
@type family_handle: str
|
@type family_handle: str
|
||||||
@param mrel: relationship between the Person and its mother
|
@param mrel: relationship between the Person and its mother
|
||||||
@type mrel: str
|
@type mrel: tuple
|
||||||
@param frel: relationship between the Person and its father
|
@param frel: relationship between the Person and its father
|
||||||
@type frel: str
|
@type frel: tuple
|
||||||
"""
|
"""
|
||||||
index=0
|
index=0
|
||||||
for f in self.parent_family_list[:]:
|
for f in self.parent_family_list[:]:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user