diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-21 03:12:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:50:04 +0800 |
commit | 90c26d6fe6db1e9a2f03498dce8f9f135233bcf8 (patch) | |
tree | 2839f8bb4af05401aaf91b8c8c2b3f248b7f6279 /mail | |
parent | 68c2986245ec68ad89e678d84559ed57679939ee (diff) | |
download | gsoc2013-evolution-90c26d6fe6db1e9a2f03498dce8f9f135233bcf8.tar.gz gsoc2013-evolution-90c26d6fe6db1e9a2f03498dce8f9f135233bcf8.tar.zst gsoc2013-evolution-90c26d6fe6db1e9a2f03498dce8f9f135233bcf8.zip |
e-table: Remove retro look
It's not used by themes so I don't see the need to port it.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/message-list.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index fc1d6896a6..f46a88e243 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1931,7 +1931,7 @@ static ECell * create_composite_cell (gint col) /* "bold_column", COL_UNREAD, */ "color_column", COL_COLOUR, NULL); - cell_tree = e_cell_tree_new (NULL, NULL, TRUE, cell_sub); + cell_tree = e_cell_tree_new (TRUE, cell_sub); e_cell_vbox_append (E_CELL_VBOX (cell_vbox), cell_hbox, COL_FROM); e_cell_vbox_append (E_CELL_VBOX (cell_vbox), cell_tree, COL_SUBJECT); @@ -2004,8 +2004,7 @@ message_list_create_extras (void) e_table_extras_add_cell (extras, "render_text", cell); e_table_extras_add_cell (extras, "render_tree", - e_cell_tree_new (NULL, NULL, /* let the tree renderer default the pixmaps */ - TRUE, cell)); + e_cell_tree_new (TRUE, cell)); /* size cell */ cell = e_cell_size_new (NULL, GTK_JUSTIFY_RIGHT); |