aboutsummaryrefslogtreecommitdiffstats
path: root/libemail-utils
diff options
context:
space:
mode:
Diffstat (limited to 'libemail-utils')
-rw-r--r--libemail-utils/mail-mt.c11
-rw-r--r--libemail-utils/mail-mt.h5
2 files changed, 7 insertions, 9 deletions
diff --git a/libemail-utils/mail-mt.c b/libemail-utils/mail-mt.c
index e932bd6e93..cad4859cd1 100644
--- a/libemail-utils/mail-mt.c
+++ b/libemail-utils/mail-mt.c
@@ -74,13 +74,12 @@ mail_msg_cancelled (CamelOperation *operation,
mail_msg_cancel (GPOINTER_TO_UINT (user_data));
}
-
static gboolean
mail_msg_submit (CamelOperation *cancellable)
{
if (submit_acitivity)
- submit_acitivity ((GCancellable *)cancellable);
+ submit_acitivity ((GCancellable *) cancellable);
return FALSE;
}
@@ -97,7 +96,7 @@ mail_msg_new (MailMsgInfo *info)
msg->seq = mail_msg_seq++;
msg->cancellable = camel_operation_new ();
-
+
if (create_activity)
create_activity (msg->cancellable);
@@ -228,7 +227,7 @@ mail_msg_check_error (gpointer msg)
if (cancel_activity)
cancel_activity (m->cancellable);
return;
- }
+ }
/* XXX Hmm, no explanation of why this is needed. It looks like
* a lame hack and will be removed at some point, if only to
@@ -239,7 +238,7 @@ mail_msg_check_error (gpointer msg)
/* FIXME: Submit an error on the dbus */
if (alert_error) {
- char *what;
+ gchar *what;
if (m->info->desc && (what = m->info->desc (m))) {
alert_error (m->cancellable, what, m->error->message);
@@ -247,7 +246,7 @@ mail_msg_check_error (gpointer msg)
} else
alert_error (m->cancellable, NULL, m->error->message);
}
-}
+}
void
mail_msg_cancel (guint msgid)
diff --git a/libemail-utils/mail-mt.h b/libemail-utils/mail-mt.h
index 52da408f70..36865fe8e9 100644
--- a/libemail-utils/mail-mt.h
+++ b/libemail-utils/mail-mt.h
@@ -36,13 +36,12 @@ typedef void (*MailMsgDoneFunc) (MailMsg *msg);
typedef void (*MailMsgFreeFunc) (MailMsg *msg);
typedef void (*MailMsgDispatchFunc) (gpointer msg);
-
typedef void (*MailMsgCreateActivityFunc) (GCancellable *cancellable);
typedef void (*MailMsgSubmitActivityFunc) (GCancellable *cancellable);
typedef void (*MailMsgFreeActivityFunc) (GCancellable *cancellable);
typedef void (*MailMsgCompleteActivityFunc) (GCancellable *cancellable);
typedef void (*MailMsgCancelActivityFunc) (GCancellable *cancellable);
-typedef void (*MailMsgAlertErrorFunc) (GCancellable *cancellable, const char *what, const char *message);
+typedef void (*MailMsgAlertErrorFunc) (GCancellable *cancellable, const gchar *what, const gchar *message);
struct _MailMsg {
MailMsgInfo *info;
@@ -67,7 +66,7 @@ void mail_msg_register_activities (MailMsgCreateActivityFunc,
MailMsgSubmitActivityFunc,
MailMsgFreeActivityFunc,
MailMsgCompleteActivityFunc,
- MailMsgCancelActivityFunc,
+ MailMsgCancelActivityFunc,
MailMsgAlertErrorFunc);
gboolean mail_in_main_thread (void);