aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-04-17 14:51:45 +0800
committerChris Toshok <toshok@src.gnome.org>2000-04-17 14:51:45 +0800
commitece07d1b3afb6e305f0446d318f26bcaaa522ab3 (patch)
treea3a68ee2a4dd5d08caaaa2dd8a87ab7ecad4e768 /mail/message-list.c
parent832bcdf998ea2b015a9b6904f72bfb3949f1b80a (diff)
downloadgsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar.gz
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar.bz2
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar.lz
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar.xz
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.tar.zst
gsoc2013-evolution-ece07d1b3afb6e305f0446d318f26bcaaa522ab3.zip
no more e_cell_set_editable. this info always comes from the model.
* message-list.c (message_list_init_renderers): no more e_cell_set_editable. this info always comes from the model. svn path=/trunk/; revision=2469
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 862077d3de..98cf6c5893 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -333,7 +333,6 @@ message_list_init_renderers (MessageList *message_list)
message_list->render_text = e_cell_text_new (
message_list->table_model,
NULL, GTK_JUSTIFY_LEFT);
- e_cell_set_editable (E_CELL (message_list->render_text), FALSE);
message_list->render_online_status = e_cell_checkbox_new ();
@@ -348,7 +347,6 @@ message_list_init_renderers (MessageList *message_list)
message_list->render_message_status = e_cell_toggle_new (0, 2, images);
}
- e_cell_set_editable (E_CELL (message_list->render_message_status), FALSE);
/*
* Attachment
@@ -361,7 +359,6 @@ message_list_init_renderers (MessageList *message_list)
message_list->render_attachment = e_cell_toggle_new (0, 2, images);
}
- e_cell_set_editable (E_CELL (message_list->render_attachment), FALSE);
/*
* FIXME: We need a real renderer here