aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-05-23 02:00:17 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-05-23 02:00:17 +0800
commitf7550c81c76341c09378b42a05485c0f1da72441 (patch)
treeebce84fb5f923bf5c594935f69d5311e4fe10603 /mail/message-list.c
parente99e12428d46db3be2878f6c2ca63bd7510149f4 (diff)
downloadgsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.gz
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.bz2
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.lz
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.xz
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.tar.zst
gsoc2013-evolution-f7550c81c76341c09378b42a05485c0f1da72441.zip
** Fix a bunch of compiler warnings.
2008-05-22 Matthew Barnes <mbarnes@redhat.com> ** Fix a bunch of compiler warnings. * calendar/gui/e-select-names-renderer.c (e_select_names_renderer_focus_out_event): Remove this function. Looks like it hasn't been used in years. * mail/em-format-html.c (efh_message_external): Fix a typo in checking for an empty 'mode' string. * mail/message-list.c (subtree_size): Remove this function. Looks like it hasn't been used in years. * plugins/email-custom-header/email-custom-header.c (action_email_custom_header_cb): Remove unused 'editor' variable. * plugins/save-calendar/csv-format.c (do_save_calendar_csv): * plugins/save-calendar/rdf-format.c (do_save_calendar_rdf): Remove pointless address check of a local variable. svn path=/trunk/; revision=35527
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 76586d6606..b23cc1c160 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -1147,26 +1147,6 @@ subtree_unread(MessageList *ml, ETreePath node)
return FALSE;
}
-static int
-subtree_size(MessageList *ml, ETreePath node)
-{
- CamelMessageInfo *info;
- int size = 0;
- ETreePath child;
-
- while (node) {
- info = e_tree_memory_node_get_data((ETreeMemory *)ml->model, node);
- g_return_val_if_fail (info != NULL, 0);
-
- size += camel_message_info_size(info);
- if ((child = e_tree_model_node_get_first_child (E_TREE_MODEL (ml->model), node)))
- size += subtree_size(ml, child);
-
- node = e_tree_model_node_get_next (ml->model, node);
- }
- return size;
-}
-
static time_t
subtree_latest(MessageList *ml, ETreePath node, int sent)
{