diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:24:42 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:11 +0800 |
commit | 54da4fc09cf226fdb59b9f0c70555e2e57dc1f91 (patch) | |
tree | c62c9ac6d08670dffc400ff00117508512ce4f8b /plugins/templates/templates.c | |
parent | fe20f70779fb486169a0735499d24e001ffa0cab (diff) | |
download | gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.gz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.zst gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.zip |
Coding style cleanups.
Diffstat (limited to 'plugins/templates/templates.c')
-rw-r--r-- | plugins/templates/templates.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/templates/templates.c b/plugins/templates/templates.c index b97926adfe..6f287c3168 100644 --- a/plugins/templates/templates.c +++ b/plugins/templates/templates.c @@ -655,7 +655,7 @@ fill_template (CamelMimeMessage *message, CamelMimePart *template) camel_data_wrapper_decode_to_stream_sync (camel_medium_get_content (CAMEL_MEDIUM (message_part)), stream, NULL, NULL); camel_stream_flush (stream, NULL, NULL); byte_array = camel_stream_mem_get_byte_array (CAMEL_STREAM_MEM (stream)); - message_body = g_string_new_len ((gchar *)byte_array->data, byte_array->len); + message_body = g_string_new_len ((gchar *) byte_array->data, byte_array->len); g_object_unref (stream); if (template_html && !message_html) { @@ -836,7 +836,7 @@ action_reply_with_template_cb (GtkAction *action, template = camel_folder_get_message_sync (template_folder, uid, NULL, NULL); mail_get_message (folder, uids->pdata[0], create_new_message, - (gpointer)template, mail_msg_unordered_push); + (gpointer) template, mail_msg_unordered_push); g_object_unref (G_OBJECT (action)); |