* src/plugins/RelCalc.py (__init__): Correctly name column header.

svn: r4965
This commit is contained in:
Alex Roitman 2005-07-25 03:34:17 +00:00
parent 28de227342
commit 0ec3ec1df9
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2005-07-24 Alex Roitman <shura@gramps-project.org>
* src/plugins/RelCalc.py (__init__): Correctly name column header.
2005-07-23 Julio Sanchez <jsanchez@users.sourceforge.net>
* src/plugins/GraphViz.py: Fix computation of landscape dimensions,
especially when generating multiple sheets

View File

@ -92,7 +92,7 @@ class RelCalc:
self.people = self.glade.get_widget("peopleList")
self.clist = ListModel.ListModel(self.people,
[(_('Name'),3,150),(_('ID'),1,50),
[(_('Name'),3,150),(_('Gender'),1,50),
(_('Birth Date'),4,150),
('',-1,0),('',-1,0)],
self.on_apply_clicked)