* src/ChooseParents.py: use integers instead of strings for
relationship types * src/PedView.py: use integers instead of strings for relationship types * src/ReadGedcom.py: use integers instead of strings for relationship types * src/ReadXML.py: use integers instead of strings for relationship types * src/RelLib.py: use integers instead of strings for relationship types * src/SelectChild.py: use integers instead of strings for relationship types * src/WriteXML.py: use integers instead of strings for relationship types * src/const.py.in: use integers instead of strings for relationship types * src/gramps_main.py: call database update function * src/GrampsBSDDB.py: add database upgrade function * src/GrampsDbBase.py: add database upgrade function svn: r4113
This commit is contained in:
		| @@ -499,8 +499,8 @@ class PedigreeView: | ||||
|         else: | ||||
|             return | ||||
|         if family_handle: | ||||
|             mrel = (m != "Birth") | ||||
|             frel = (f != "Birth") | ||||
|             mrel = m != RelLib.Person.CHILD_REL_BIRTH | ||||
|             frel = f != RelLib.Person.CHILD_REL_BIRTH | ||||
|  | ||||
|         family = self.parent.db.get_family_from_handle(family_handle) | ||||
|         if family != None: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user