From f6e0e26a6febd0c934a166437bb344f2dbb735a9 Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Wed, 8 Feb 2006 11:51:32 +0000 Subject: s/int/guint/g for 1-bit bitfield. Remove cruft use guint for 1-bit 2006-01-09 Kjartan Maraas * em-account-editor.h: s/int/guint/g for 1-bit bitfield. * em-composer-utils.c: (em_utils_redirect_message): Remove cruft * em-folder-tree.c: (emft_drop_target): use guint for 1-bit bitfield and rename a variable with a name clash. * em-folder-utils.c: (em_folder_utils_rename_folder): Rename var to avoid name clashes. * em-folder-view.c: guint for 1-bit bitfields. * em-folder-view.h: Same as above. * em-format-html-print.h: Again. * em-format-html.c: (efh_text_html), (efh_multipart_related): Add comments * em-format.c: (emf_multipart_alternative): Add comment about using var that is passed in rather than a local variable. * em-inline-filter.c: (emif_scan): Remove unused var. Mark code static. * em-mailer-prefs.h: guint for 1-bit bitfields. * em-migrate.c: (em_migrate_folder): mark a struct static. remove unused var * em-subscribe-editor.c: guint for 1-bit bitfield * em-utils.c: remove unused function * em-vfolder-rule.c: mark array static * importers/mail-importer.c: (decode_status): Remove unused code. Use guint for 1-bit bitfield. * mail-autofilter.c: (rule_from_message): rename a variable * mail-component.c: guint for 1-bit bitfield * mail-folder-cache.c: (update_1folder): remove unused code * mail-mt.c: mark some structs static * message-list.c: (message_list_select_uid), (ml_value_to_string), (ml_tree_value_at), (find_next_undeleted), (build_tree), (build_flat): Remove unused code and fix some format specifiers. svn path=/trunk/; revision=31448 --- mail/mail-mt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mail/mail-mt.c') diff --git a/mail/mail-mt.c b/mail/mail-mt.c index ae2ba5b590..130b030e55 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -690,7 +690,7 @@ idle_async_event(void *mm) return FALSE; } -struct _mail_msg_op async_event_op = { +static struct _mail_msg_op async_event_op = { NULL, do_async_event, NULL, @@ -832,7 +832,7 @@ do_call(struct _mail_msg *mm) } } -struct _mail_msg_op mail_call_op = { +static struct _mail_msg_op mail_call_op = { NULL, do_call, NULL, @@ -882,7 +882,7 @@ static void do_set_busy(struct _mail_msg *mm) set_stop(busy_state > 0); } -struct _mail_msg_op set_busy_op = { +static struct _mail_msg_op set_busy_op = { NULL, do_set_busy, NULL, @@ -1015,7 +1015,7 @@ do_op_status_free (struct _mail_msg *mm) g_free (m->what); } -struct _mail_msg_op op_status_op = { +static struct _mail_msg_op op_status_op = { NULL, do_op_status, NULL, -- cgit v1.2.3