From 91b8da4fd0cad589cd5b0e40db7c7bf86c81ef01 Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Thu, 4 Feb 2010 22:43:09 +0000 Subject: [PATCH] Include more place attributes in the place selector svn: r14217 --- src/gui/selectors/selectplace.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/gui/selectors/selectplace.py b/src/gui/selectors/selectplace.py index 73b07c05a..4dfbc2e40 100644 --- a/src/gui/selectors/selectplace.py +++ b/src/gui/selectors/selectplace.py @@ -2,7 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2003-2006 Donald N. Allingham -# 2009 Gary Burton +# 2009-2010 Gary Burton # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -58,8 +58,14 @@ class SelectPlace(BaseSelector): def get_column_titles(self): return [ - (_('Title'), 350, BaseSelector.TEXT, 0), - (_('ID'), 75, BaseSelector.TEXT, 1) + (_('Title'), 350, BaseSelector.TEXT, 0), + (_('ID'), 75, BaseSelector.TEXT, 1), + (_('Street'), 75, BaseSelector.TEXT, 11), + (_('Parish'), 75, BaseSelector.TEXT, 2), + (_('City'), 75, BaseSelector.TEXT, 4), + (_('County'), 75, BaseSelector.TEXT, 5), + (_('State'), 75, BaseSelector.TEXT, 6), + (_('Country'), 75, BaseSelector.TEXT, 7), ] def get_from_handle_func(self):