aboutsummaryrefslogtreecommitdiffstats
path: root/mail
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
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')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/message-list.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index edf0e629f5..8ec2e1c703 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-17 Chris Toshok <toshok@helixcode.com>
+
+ * message-list.c (message_list_init_renderers): no more
+ e_cell_set_editable. this info always comes from the model.
+
2000-04-14 Dan Winship <danw@helixcode.com>
* mail-format.[ch]: Moved from camel/camel-formatter, and changed
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