aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJon Oberheide <jon@focalhost.com>2004-06-08 11:17:06 +0800
committerHans Petter <hansp@src.gnome.org>2004-06-08 11:17:06 +0800
commit61423dc27ca64db80aa54b9c965ec2295d945241 (patch)
tree5d4e560f602f99e3dd86531a92dfd08d504932df /addressbook
parent776ddff67439e876b48dc1dfd0545288b42b2498 (diff)
downloadgsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar
gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.gz
gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.bz2
gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.lz
gsoc2013-evolution-61423dc27ca64db80aa54b9c965ec2295d945241.tar.xz
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')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-model.c2
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. */