aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/templates
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:24:42 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:37:20 +0800
commit8a186c3588d3598857c36e2122fa68d01eba30fd (patch)
tree731078659d4e04af8346c5ca68512d8537b3707a /plugins/templates
parent2bf3460cd3eb0853a1d10a6e36f5091898a5533f (diff)
downloadgsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.gz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.bz2
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.lz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.xz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.zst
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.zip
Coding style cleanups.
Diffstat (limited to 'plugins/templates')
-rw-r--r--plugins/templates/templates.c4
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));