diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-08 02:37:43 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-08 02:37:43 +0800 |
commit | cf61f7c4dd6f445be551bea4b55e7902edf4a816 (patch) | |
tree | 318ef66d98dbbd186310f71fefcc35cbd9812045 /addressbook/gui/component/select-names/e-select-names-manager.c | |
parent | fc43959180e0ab748ba68fa4834e6913f2aba74e (diff) | |
download | gsoc2013-evolution-cf61f7c4dd6f445be551bea4b55e7902edf4a816.tar.gz gsoc2013-evolution-cf61f7c4dd6f445be551bea4b55e7902edf4a816.tar.zst gsoc2013-evolution-cf61f7c4dd6f445be551bea4b55e7902edf4a816.zip |
Make the entry widgets we create editable.
2000-07-07 Christopher James Lahey <clahey@helixcode.com>
* gui/component/select-names/e-select-names-manager.c: Make the
entry widgets we create editable.
* gui/component/select-names/e-select-names-model.c: Use
e_strsplit instead of g_strsplit. Fixed an off by 1 error.
* gui/component/select-names/e-select-names-table-model.c: When
the model changes, send a model changed signal.
* gui/component/select-names/e-select-names-text-model.c: Made
changing this work correctly if it's empty. Made change signals
propagate properly. Is a bit better about freeing iterators when
done.
* gui/component/select-names/e-select-names.c: Made the finished
lists be in order instead of being sorted.
svn path=/trunk/; revision=3955
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-manager.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-manager.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c index 2eea09f985..4b0d65902e 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.c +++ b/addressbook/gui/component/select-names/e-select-names-manager.c @@ -209,6 +209,7 @@ GtkWidget *e_select_names_manager_create_entry ( model = e_select_names_text_model_new(section->model); gtk_object_set(GTK_OBJECT(entry), "model", model, + "editable", TRUE, NULL); return entry; } |