diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-16 08:13:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-16 08:13:11 +0800 |
commit | 6ee6427afd6d158c62563c0f1bf6ba2067460dca (patch) | |
tree | 2b1df2053d174b2726365a042328cf29c4d9bf4c /mail | |
parent | 5e8195693beefe391f49a860b206893aedd1338c (diff) | |
download | gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar.gz gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar.bz2 gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar.lz gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar.xz gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.tar.zst gsoc2013-evolution-6ee6427afd6d158c62563c0f1bf6ba2067460dca.zip |
Remove e_tree_model_has_save_id().
It always returned TRUE.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/message-list.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 3350f97e41..e95034aef5 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2679,12 +2679,6 @@ message_list_column_count (ETreeModel *tree_model) return COL_LAST; } -static gboolean -message_list_has_save_id (ETreeModel *tree_model) -{ - return TRUE; -} - static gchar * message_list_get_save_id (ETreeModel *tree_model, ETreePath path) @@ -3135,7 +3129,6 @@ message_list_tree_model_init (ETreeModelInterface *interface) interface->depth = message_list_depth; 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; interface->get_save_id = message_list_get_save_id; interface->has_get_node_by_id = message_list_has_get_node_by_id; interface->get_node_by_id = message_list_get_node_by_id; |