aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-16 07:59:41 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-16 08:10:06 +0800
commit5e8195693beefe391f49a860b206893aedd1338c (patch)
tree04c239c74cd88bb51e82fb2f59c616dd110b683c /mail
parent69de51a15ab85e4dca9fed93a1e03644b0e6a840 (diff)
downloadgsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar.gz
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar.bz2
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar.lz
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar.xz
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.tar.zst
gsoc2013-evolution-5e8195693beefe391f49a860b206893aedd1338c.zip
Remove e_tree_model_icon_at().
It always returned NULL.
Diffstat (limited to 'mail')
-rw-r--r--mail/message-list.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index ae7e351b91..3350f97e41 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -2665,13 +2665,6 @@ message_list_depth (ETreeModel *tree_model,
return g_node_depth ((GNode *) path);
}
-static GdkPixbuf *
-message_list_icon_at (ETreeModel *tree_model,
- ETreePath path)
-{
- return NULL;
-}
-
static gboolean
message_list_get_expanded_default (ETreeModel *tree_model)
{
@@ -3140,7 +3133,6 @@ message_list_tree_model_init (ETreeModelInterface *interface)
interface->is_expandable = message_list_is_expandable;
interface->get_n_children = message_list_get_n_children;
interface->depth = message_list_depth;
- interface->icon_at = message_list_icon_at;
interface->get_expanded_default = message_list_get_expanded_default;
interface->column_count = message_list_column_count;
interface->has_save_id = message_list_has_save_id;