diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-24 13:10:42 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-24 13:10:42 +0800 |
commit | d48348f3404f71dddfacfd348f035479d308dede (patch) | |
tree | 631e2e89b2219027735c10f9723f76ab6bd3e265 /mail | |
parent | 11f85495a9fb083e40ccc47c4ec533dbe6dea9e7 (diff) | |
download | gsoc2013-evolution-d48348f3404f71dddfacfd348f035479d308dede.tar.gz gsoc2013-evolution-d48348f3404f71dddfacfd348f035479d308dede.tar.zst gsoc2013-evolution-d48348f3404f71dddfacfd348f035479d308dede.zip |
Coding style and whitespace cleanups.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-composer-utils.c | 2 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 | ||||
-rw-r--r-- | mail/mail-send-recv.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c index b2083b78d3..f03a66d7f5 100644 --- a/mail/em-composer-utils.c +++ b/mail/em-composer-utils.c @@ -2015,7 +2015,7 @@ get_reply_all (CamelMimeMessage *message, CamelInternetAddress *to, CamelInterne camel_internet_address_get (reply_to, 0, &name, &addr); camel_internet_address_add (to, name, addr); } - + /* promote the first Cc: address to To: if To: is empty */ if (camel_address_length ((CamelAddress *) to) == 0 && camel_address_length ((CamelAddress *)cc) > 0) { camel_internet_address_get (cc, 0, &name, &addr); diff --git a/mail/mail-ops.c b/mail/mail-ops.c index b65c7f3c59..0f17dc2a4a 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -964,7 +964,7 @@ static gchar * transfer_messages_desc (struct _transfer_msg *m) { return g_strdup_printf (m->delete ? _("Moving messages to '%s'") : _("Copying messages to '%s'"), - m->dest_uri); + m->dest_uri); } diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 597ec61bf0..b0cff31a9d 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -122,7 +122,7 @@ struct _send_info { gint pc; GtkWidget *send_account_label; - char *send_url; + gchar *send_url; /*time_t update;*/ struct _send_data *data; @@ -282,7 +282,7 @@ operation_status_timeout(gpointer data) GTK_LABEL (info->status_label), info->what); if (info->send_url && info->send_account_label) { - char *tmp = format_url (info->send_url, NULL); + gchar *tmp = format_url (info->send_url, NULL); g_free (info->send_url); info->send_url = NULL; @@ -315,7 +315,7 @@ set_send_status(struct _send_info *info, const gchar *desc, gint pc) } static void -set_send_account (struct _send_info *info, const char *account_url) +set_send_account (struct _send_info *info, const gchar *account_url) { g_static_mutex_lock (&status_lock); |