diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-01-19 10:24:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-01-19 12:48:48 +0800 |
commit | 59e6e599ba390b0aa720973ff297260d7d354b73 (patch) | |
tree | 42342a51edb84a0f08f3c2a49def3c60bc71d0fa /mail/em-format-html-print.c | |
parent | 61ae36351b24cc676f60483d576706bf827f2987 (diff) | |
download | gsoc2013-evolution-59e6e599ba390b0aa720973ff297260d7d354b73.tar.gz gsoc2013-evolution-59e6e599ba390b0aa720973ff297260d7d354b73.tar.zst gsoc2013-evolution-59e6e599ba390b0aa720973ff297260d7d354b73.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'mail/em-format-html-print.c')
-rw-r--r-- | mail/em-format-html-print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-format-html-print.c b/mail/em-format-html-print.c index 04216900bc..97a7627c6d 100644 --- a/mail/em-format-html-print.c +++ b/mail/em-format-html-print.c @@ -224,14 +224,14 @@ em_format_html_print_message (EMFormatHTMLPrint *efhp, if (efhp->async) { g_signal_connect ( efhp, "complete", G_CALLBACK (emfhp_complete), efhp); - + /* FIXME Not passing a GCancellable here. */ em_format_format_clone ( - (EMFormat *) efhp, + (EMFormat *) efhp, folder, message_uid, message, (EMFormat *) efhp->source, NULL); } else { - em_format_html_clone_sync (folder, message_uid, message, (EMFormatHTML *)efhp, (EMFormat *)efhp->source); + em_format_html_clone_sync (folder, message_uid, message, (EMFormatHTML *) efhp, (EMFormat *) efhp->source); emfhp_complete (efhp); } } |