diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-08 13:21:06 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-08 13:21:06 +0800 |
commit | 04c9a5189dac46e93a3b35134dbc499df3e28c21 (patch) | |
tree | 80eb111e562f39c0b2b75b5e9a974689c1a50427 /addressbook/gui/component/select-names/e-select-names.c | |
parent | d1550ea22f88670875c2cb77d2bb46d8a97d6de0 (diff) | |
download | gsoc2013-evolution-04c9a5189dac46e93a3b35134dbc499df3e28c21.tar.gz gsoc2013-evolution-04c9a5189dac46e93a3b35134dbc499df3e28c21.tar.zst gsoc2013-evolution-04c9a5189dac46e93a3b35134dbc499df3e28c21.zip |
Added an "editable" argument.
2000-07-08 Christopher James Lahey <clahey@helixcode.com>
* gui/component/e-addressbook-model.c,
gui/component/e-addressbook-model.h: Added an "editable" argument.
* gui/component/select-names/e-select-names.c: Set our
EAddressModel to not be editable.
svn path=/trunk/; revision=3969
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 93214ca923..a588b10770 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -135,6 +135,9 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n char *uri; model = e_addressbook_model_new(); + gtk_object_set(GTK_OBJECT(model), + "editable", FALSE, + NULL); cell_left_just = e_cell_text_new (model, NULL, GTK_JUSTIFY_LEFT); header = e_table_header_new (); |