summaryrefslogtreecommitdiff
path: root/guimb/collect.c
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2005-08-27 11:37:43 +0000
committerWojciech Polak <polak@gnu.org>2005-08-27 11:37:43 +0000
commit755146b443774be9fdff992ede4cb921762b9649 (patch)
treed92ea93eaf520c557231e7dca1d9051eac00d5be /guimb/collect.c
parent6178304b1670d7288d8a37b9165bda5cbc44c180 (diff)
downloadmailutils-755146b443774be9fdff992ede4cb921762b9649.tar.gz
mailutils-755146b443774be9fdff992ede4cb921762b9649.tar.bz2
Normalize global namespace. Part 2
Diffstat (limited to 'guimb/collect.c')
-rw-r--r--guimb/collect.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/guimb/collect.c b/guimb/collect.c
index 0fd3d6163..639f0e536 100644
--- a/guimb/collect.c
+++ b/guimb/collect.c
@@ -20,7 +20,7 @@
char *temp_filename;
FILE *temp_file;
-mailbox_t mbox;
+mu_mailbox_t mbox;
void
collect_open_default ()
@@ -132,7 +132,7 @@ int
collect_output ()
{
size_t i, count = 0;
- mailbox_t outbox = NULL;
+ mu_mailbox_t outbox = NULL;
int saved_umask;
if (!temp_filename)
@@ -156,11 +156,11 @@ collect_output ()
mu_mailbox_messages_count (mbox, &count);
for (i = 1; i <= count; i++)
{
- message_t msg = NULL;
- attribute_t attr = NULL;
+ mu_message_t msg = NULL;
+ mu_attribute_t attr = NULL;
mu_mailbox_get_message (mbox, i, &msg);
- message_get_attribute (msg, &attr);
+ mu_message_get_attribute (msg, &attr);
if (!mu_attribute_is_deleted (attr))
{
mu_attribute_set_recent (attr);
@@ -191,7 +191,7 @@ collect_drop_mailbox ()
}
SCM
-guimb_catch_body (void *data, mailbox_t unused)
+guimb_catch_body (void *data, mu_mailbox_t unused)
{
struct guimb_data *gd = data;
if (gd->program_file)
@@ -211,7 +211,7 @@ guimb_catch_handler (void *unused, SCM tag, SCM throw_args)
}
int
-guimb_exit (void *unused1, mailbox_t unused2)
+guimb_exit (void *unused1, mu_mailbox_t unused2)
{
int rc = collect_output ();
collect_drop_mailbox ();

Return to:

Send suggestions and report system problems to the System administrator.