aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-06-05 04:53:10 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-06-09 01:14:48 +0800
commitf014ab82c81078d60cb1df8c986305c2cc9948c2 (patch)
treec3bde4e5da923c9ee082fcb994b10c2ce2f61dc2 /composer
parent7428fc93d58921bab9968a999172b843af2a2244 (diff)
downloadgsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar.gz
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar.bz2
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar.lz
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar.xz
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.tar.zst
gsoc2013-evolution-f014ab82c81078d60cb1df8c986305c2cc9948c2.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'composer')
-rw-r--r--composer/e-composer-private.c3
-rw-r--r--composer/e-msg-composer.c28
2 files changed, 23 insertions, 8 deletions
diff --git a/composer/e-composer-private.c b/composer/e-composer-private.c
index 08cdd47e1f..693fd959f5 100644
--- a/composer/e-composer-private.c
+++ b/composer/e-composer-private.c
@@ -318,7 +318,8 @@ e_composer_private_constructed (EMsgComposer *composer)
/* Construct the attachment paned. */
if (small_screen_mode) {
- e_attachment_paned_set_default_height (75); /* short attachment bar for Anjal */
+ /* short attachment bar for Anjal */
+ e_attachment_paned_set_default_height (75);
e_attachment_icon_view_set_default_icon_size (GTK_ICON_SIZE_BUTTON);
}
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 92cf04d661..5ff7427108 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -467,11 +467,16 @@ set_recipients_from_destv (CamelMimeMessage *msg,
}
}
- header = redirect ? CAMEL_RECIPIENT_TYPE_RESENT_TO : CAMEL_RECIPIENT_TYPE_TO;
+ if (redirect)
+ header = CAMEL_RECIPIENT_TYPE_RESENT_TO;
+ else
+ header = CAMEL_RECIPIENT_TYPE_TO;
+
if (camel_address_length (CAMEL_ADDRESS (to_addr)) > 0) {
camel_mime_message_set_recipients (msg, header, to_addr);
} else if (seen_hidden_list) {
- camel_medium_set_header (CAMEL_MEDIUM (msg), header, "Undisclosed-Recipient:;");
+ camel_medium_set_header (
+ CAMEL_MEDIUM (msg), header, "Undisclosed-Recipient:;");
}
header = redirect ? CAMEL_RECIPIENT_TYPE_RESENT_CC : CAMEL_RECIPIENT_TYPE_CC;
@@ -3056,7 +3061,8 @@ handle_multipart (EMsgComposer *composer,
composer, mime_part,
cancellable, depth + 1);
- } else if (camel_content_type_is (content_type, "multipart", "alternative")) {
+ } else if (camel_content_type_is (
+ content_type, "multipart", "alternative")) {
handle_multipart_alternative (
composer, mp, cancellable, depth + 1);
@@ -3079,7 +3085,8 @@ handle_multipart (EMsgComposer *composer,
} else if (camel_mime_part_get_content_id (mime_part) ||
camel_mime_part_get_content_location (mime_part)) {
/* special in-line attachment */
- e_msg_composer_add_inline_image_from_mime_part (composer, mime_part);
+ e_msg_composer_add_inline_image_from_mime_part (
+ composer, mime_part);
} else {
/* normal attachment */
e_msg_composer_attach (composer, mime_part);
@@ -3151,9 +3158,16 @@ e_msg_composer_new_with_message (EShell *shell,
g_return_val_if_fail (E_IS_SHELL (shell), NULL);
- for (headers = CAMEL_MIME_PART (message)->headers;headers;headers = headers->next) {
- if (!strcmp (headers->name, "X-Evolution-PostTo"))
- postto = g_list_append (postto, g_strstrip (g_strdup (headers->value)));
+ headers = CAMEL_MIME_PART (message)->headers;
+ while (headers != NULL) {
+ gchar *value;
+
+ if (strcmp (headers->name, "X-Evolution-PostTo") == 0) {
+ value = g_strstrip (g_strdup (headers->value));
+ postto = g_list_append (postto, value);
+ }
+
+ headers = headers->next;
}
composer = e_msg_composer_new (shell);