* src/gramps.glade: use ComboBox instead of ComboBoxEntry

for temple
* src/EditPerson.py: use ComboBox instead of ComboBoxEntry
for temple


svn: r4080
This commit is contained in:
Don Allingham
2005-02-23 04:30:08 +00:00
parent bd020c830a
commit b4d54945d3
4 changed files with 1917 additions and 68 deletions

View File

@ -54,7 +54,7 @@ def fill_entry(entry,data_list):
entry.set_completion(completion)
def fill_option_text(combobox,data):
store = gtk.ListStore(gobject.TYPE_STRING)
store = gtk.ListStore(str)
for item in data:
store.append(row=[item])
combobox.set_model(store)