aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-01 06:32:52 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-01 06:32:52 +0800
commit3892c5df4d87257d373b766045cb7d3b3493481a (patch)
tree26e726dfe3bc56257c08dc6b3f1f935f4e61c227 /mail/message-list.c
parent1ad76125efe77fe8237c8bdf6dde4f0bacf92f38 (diff)
downloadgsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar.gz
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar.bz2
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar.lz
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar.xz
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.tar.zst
gsoc2013-evolution-3892c5df4d87257d373b766045cb7d3b3493481a.zip
Fixed some warnings.
2000-07-31 Christopher James Lahey <clahey@helixcode.com> * component-factory.c, folder-browser.c: Fixed some warnings. * message-list.c: Made the icon column non sortable. svn path=/trunk/; revision=4440
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 4bf546f221..1a2c8fb3fd 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -465,6 +465,10 @@ message_list_init_header (MessageList *message_list)
message_list->render_message_status,
g_int_compare, FALSE);
+ gtk_object_set(GTK_OBJECT(message_list->table_cols[COL_MESSAGE_STATUS]),
+ "sortable", FALSE,
+ NULL);
+
message_list->table_cols [COL_PRIORITY] =
e_table_col_new (
COL_PRIORITY, _("Priority"),
@@ -479,6 +483,10 @@ message_list_init_header (MessageList *message_list)
message_list->render_attachment,
g_int_compare, FALSE);
+ gtk_object_set(GTK_OBJECT(message_list->table_cols[COL_ATTACHMENT]),
+ "sortable", FALSE,
+ NULL);
+
message_list->table_cols [COL_FROM] =
e_table_col_new (
COL_FROM, _("From"),