diff options
author | Jon Oberheide <jon@focalhost.com> | 2004-06-08 11:17:06 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-06-08 11:17:06 +0800 |
commit | 61423dc27ca64db80aa54b9c965ec2295d945241 (patch) | |
tree | 5d4e560f602f99e3dd86531a92dfd08d504932df /addressbook/gui | |
parent | 776ddff67439e876b48dc1dfd0545288b42b2498 (diff) | |
download | gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.gz gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.zst gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.zip |
disable editing of cells in the contact table.
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.
svn path=/trunk/; revision=26245
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |