* src/SourceView.py: fix source query dialog

* src/ansel_utf8.py: fix unicode conversion
* src/GrampsDb/_GrampsDbBase.py: fix surname detection
* src/GrampsDb/_ReadGedcomp.py: fix note importation


svn: r5893
This commit is contained in:
Don Allingham
2006-02-07 03:07:31 +00:00
parent 8b8d359062
commit 768ce714f7
5 changed files with 19 additions and 10 deletions

View File

@@ -964,7 +964,7 @@ class GrampsDbBase(GrampsDBCallback):
cursor = self.get_person_cursor()
data = cursor.first()
while data:
slist.append((data[1][3].sname,data[0]))
slist.append((data[1][3][3],data[0]))
data = cursor.next()
cursor.close()
slist.sort()