2007-05-08 Don Allingham <don@gramps-project.org>

* src/Editors/_EditFamily.py (ChildEmbedList): Sort by the proper column
	* src/GrampsDb/_GrampsDbBase.py (GrampsDbBookmarks.insert): fix
	bookmark insertion (#1050)



svn: r8450
This commit is contained in:
Don Allingham 2007-05-09 04:00:08 +00:00
parent 024c7d187b
commit d27e44ac6a
2 changed files with 12 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2007-05-08 Don Allingham <don@gramps-project.org>
* src/Editors/_EditFamily.py (ChildEmbedList): Sort by the proper column
* src/GrampsDb/_GrampsDbBase.py (GrampsDbBookmarks.insert): fix
bookmark insertion (#1050)
2007-05-08 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: Change the default directory so people don't
generate the report in their database directory.

View File

@ -88,14 +88,14 @@ class ChildEmbedList(EmbeddedList):
_column_names = [
(_('#'),0) ,
(_('ID'),1) ,
(_('Name'),9),
(_('Name'),11),
(_('Gender'),3),
(_('Paternal'),12),
(_('Maternal'),13),
(_('Birth Date'),10),
(_('Death Date'),11),
(_('Birth Place'),6),
(_('Death Place'),7),
(_('Paternal'),4),
(_('Maternal'),5),
(_('Birth Date'),12),
(_('Death Date'),13),
(_('Birth Place'),8),
(_('Death Place'),9),
]
def __init__(self, dbstate, uistate, track, family):