diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-model.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 5071293cc4..5c8c64b9d8 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-06-07 Jon Oberheide <jon@focalhost.com> + + * gui/contact-list-editor/e-contact-list-model.c: disable editing + of cells in the contact table. + 2004-06-07 Hans Petter Jansson <hpj@ximian.com> Fixes #57795. diff --git a/addressbook/gui/contact-list-editor/e-contact-list-model.c b/addressbook/gui/contact-list-editor/e-contact-list-model.c index 8a22da19db..ee9b3a3601 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-model.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-model.c @@ -44,7 +44,7 @@ contact_list_set_value_at (ETableModel *etc, int col, int row, const void *val) static gboolean contact_list_is_cell_editable (ETableModel *etc, int col, int row) { - return TRUE; + return FALSE; } /* This function duplicates the value passed to it. */ |