use correct field for building surname key

svn: r6379
This commit is contained in:
Don Allingham 2006-04-20 15:05:56 +00:00
parent aee92da466
commit dc11b217dd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-04-19 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_GrampsBSDDB.py: use correct field for building
surname key
2006-04-19 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_DbUtils.py: fix handle vs. ref issues
* src/RelLib/_Family.py: add remove_child_handle

View File

@ -59,7 +59,7 @@ _MINVERSION = 5
_DBVERSION = 9
def find_surname(key,data):
return str(data[3][3])
return str(data[3][5])
def find_idmap(key,data):
return str(data[1])