diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-08-25 01:10:58 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-08-25 01:10:58 +0800 |
commit | 67c9a151f7cd8a2986f97335d025b7f8bb95b6ef (patch) | |
tree | 416dceb1169b3ca69ddab662ece5534e310ffc38 /plugins | |
parent | 9a1a431da99ee4efcf446aae9a7a02ddeae47341 (diff) | |
download | gsoc2013-evolution-67c9a151f7cd8a2986f97335d025b7f8bb95b6ef.tar.gz 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')
-rw-r--r-- | plugins/print-message/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/print-message/print-message.c | 2 |
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); |