diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2006-02-08 19:51:32 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-02-08 19:51:32 +0800 |
commit | f6e0e26a6febd0c934a166437bb344f2dbb735a9 (patch) | |
tree | e0020bed35ced9e71df75bc9c015f844c4645707 /mail/mail-mt.c | |
parent | ea9e711fe9b31a61fa9ace5dd5d84740d216f182 (diff) | |
download | gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.tar.gz gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.tar.zst gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.zip |
s/int/guint/g for 1-bit bitfield. Remove cruft use guint for 1-bit
2006-01-09 Kjartan Maraas <kmaraas@gnome.org>
* 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
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 8 |
1 files changed, 4 insertions, 4 deletions
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, |