* src/GenericFilter.py (GrampsFilterComboBox.get_value): Do not
convert key to unicode. svn: r4976
This commit is contained in:
parent
478f90b8e8
commit
3f8c9298a4
@ -1,3 +1,7 @@
|
||||
2005-07-29 Alex Roitman <shura@gramps-project.org>
|
||||
* src/GenericFilter.py (GrampsFilterComboBox.get_value): Do not
|
||||
convert key to unicode.
|
||||
|
||||
2005-07-28 Don Allingham <don@gramps-project.org>
|
||||
* src/MergePeople.py: prevent attempts to merge a person and his/her
|
||||
spouse, prevent merging of child and parent.
|
||||
|
@ -2380,7 +2380,7 @@ class GrampsFilterComboBox(gtk.ComboBox):
|
||||
active = self.get_active()
|
||||
if active < 0:
|
||||
return None
|
||||
key = unicode(self.store[active][0])
|
||||
key = self.store[active][0]
|
||||
return self.map[key]
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user