diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-11-14 08:38:47 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-11-14 08:38:47 +0800 |
commit | 6cf20bbebabbc2c930cff97c0cf28a1297a0ce3f (patch) | |
tree | 8c67e8d5494ada49bbc872bc405059f8f4bc0176 /addressbook/gui/contact-list-editor | |
parent | dbf9e56e6398ae0520085e8a3f0f25fc2225d4a8 (diff) | |
download | gsoc2013-evolution-6cf20bbebabbc2c930cff97c0cf28a1297a0ce3f.tar.gz gsoc2013-evolution-6cf20bbebabbc2c930cff97c0cf28a1297a0ce3f.tar.zst gsoc2013-evolution-6cf20bbebabbc2c930cff97c0cf28a1297a0ce3f.zip |
Return TRUE for all cells, for now.
2003-11-13 Hans Petter Jansson <hpj@ximian.com>
* gui/contact-list-editor/e-contact-list-model.c
(contact_list_is_cell_editable): Return TRUE for all cells, for now.
* gui/widgets/e-addressbook-table-adapter.c (card_modified_cb):
Renamed to contact_modified_cb ().
(addressbook_set_value_at): Port to use EContact instead of ECard.
(addressbook_is_cell_editable): Ditto.
(addressbook_append_row): Ditto.
* gui/widgets/e-minicard-label.c (e_minicard_label_set_property):
Make not editable, ever, and add a comment to this effect.
(e_minicard_label_realize): Ditto.
* gui/widgets/e-minicard.c (e_minicard_set_property): Ditto.
(add_field): Ditto.
svn path=/trunk/; revision=23348
Diffstat (limited to 'addressbook/gui/contact-list-editor')
-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 80bc29b7a9..c7fd626372 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 FALSE; + return TRUE; } /* This function duplicates the value passed to it. */ |