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/widgets/e-minicard-label.c | |
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/widgets/e-minicard-label.c')
-rw-r--r-- | addressbook/gui/widgets/e-minicard-label.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-minicard-label.c b/addressbook/gui/widgets/e-minicard-label.c index 31935164d7..df1465349e 100644 --- a/addressbook/gui/widgets/e-minicard-label.c +++ b/addressbook/gui/widgets/e-minicard-label.c @@ -229,7 +229,7 @@ e_minicard_label_set_property (GObject *object, guint prop_id, const GValue *va break; case PROP_EDITABLE: e_minicard_label->editable = g_value_get_boolean (value); - g_object_set (e_minicard_label->field, "editable", e_minicard_label->editable, NULL); + g_object_set (e_minicard_label->field, "editable", FALSE /* e_minicard_label->editable */, NULL); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); @@ -322,7 +322,7 @@ e_minicard_label_realize (GnomeCanvasItem *item) "clip", TRUE, "use_ellipsis", TRUE, "fill_color", "black", - "editable", e_minicard_label->editable, + "editable", FALSE, /* e_minicard_label->editable, */ "draw_background", FALSE, "im_context", E_CANVAS (item->canvas)->im_context, NULL ); |