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