aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/print-message
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-08-25 01:10:58 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-08-25 01:10:58 +0800
commit67c9a151f7cd8a2986f97335d025b7f8bb95b6ef (patch)
tree416dceb1169b3ca69ddab662ece5534e310ffc38 /plugins/print-message
parent9a1a431da99ee4efcf446aae9a7a02ddeae47341 (diff)
downloadgsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.gz
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.bz2
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.lz
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.xz
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.zst
gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.zip
** Fixes bug #355766
2007-08-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #355766 * plugins/print-message/print-message.c (org_gnome_print_preview): Call e_msg_composer_get_message_print(). * composer/e-msg-composer.[ch] (e_msg_composer_get_message_print): New function overrides composer flags for printing. Patch by Mayank Jain. svn path=/trunk/; revision=34099
Diffstat (limited to 'plugins/print-message')
-rw-r--r--plugins/print-message/ChangeLog7
-rw-r--r--plugins/print-message/print-message.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/print-message/ChangeLog b/plugins/print-message/ChangeLog
index 62ddd88b88..017a5d71ef 100644
--- a/plugins/print-message/ChangeLog
+++ b/plugins/print-message/ChangeLog
@@ -1,3 +1,10 @@
+2007-08-24 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #355766
+
+ * print-message.c (org_gnome_print_preview):
+ Call e_msg_composer_get_message_print().
+
2007-05-11 Gilles Dartiguelongue <dartigug@esiee.fr>
* print-message.c: fix prototypes,
diff --git a/plugins/print-message/print-message.c b/plugins/print-message/print-message.c
index 5e5ec389fd..60d73bb799 100644
--- a/plugins/print-message/print-message.c
+++ b/plugins/print-message/print-message.c
@@ -65,7 +65,7 @@ org_gnome_print_preview (EPlugin *ep, EMMenuTargetWidget *t)
EMFormatHTMLPrint *efhp;
action = GTK_PRINT_OPERATION_ACTION_PREVIEW;
- message = e_msg_composer_get_message (composer, 1);
+ message = e_msg_composer_get_message_print (composer, 1);
efhp = em_format_html_print_new (NULL, action);
em_format_html_print_raw_message (efhp, message);