aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-04-20 05:45:14 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-04-20 05:45:14 +0800
commite739391cceefb5b2c60c83f0aced1f8f399092f2 (patch)
tree2d2ce75c0448549173dc73b2da951c6ab576fbd7 /mail/em-format-html.c
parent6a49b7889388637b52d52403638c0d47c982e91c (diff)
downloadgsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.gz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.bz2
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.lz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.xz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.zst
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.zip
Same.
2004-04-19 Jeffrey Stedfast <fejj@ximian.com> * message-tag-followup.c (construct): Same. * message-list.c (message_list_init_images): Same. * mail-send-recv.c (build_dialog): Same. * mail-mt.c (do_op_status): Same. * mail-config-druid.c (evolution_mail_config_wizard_new): Same. * em-popup.c (em_popup_create_menu): Same. * em-format-html-display.c (efhd_format_prefix): Same. * em-format-html.c (efh_format_secure): Same as below. * em-folder-tree.c (render_pixbuf): Don't use absolute icon sizes, use the e-icon-factory enums. svn path=/trunk/; revision=25527
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 5864eaac52..53a933f783 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -604,7 +604,7 @@ efh_format_secure(EMFormat *emf, CamelStream *stream, CamelMimePart *part, Camel
classid = g_strdup_printf("smime:///em-format-html/%s/icon/signed", emf->part_id->str);
camel_stream_printf(stream, "<td valign=\"top\"><img src=\"%s\"></td><td valign=\"top\" width=\"100%%\">", classid);
- iconpath = e_icon_factory_get_icon_filename (smime_sign_table[valid->sign.status].icon, 48);
+ iconpath = e_icon_factory_get_icon_filename (smime_sign_table[valid->sign.status].icon, E_ICON_SIZE_DIALOG);
iconpart = em_format_html_file_part((EMFormatHTML *)emf, "image/png", iconpath);
if (iconpart) {
(void)em_format_add_puri(emf, sizeof(EMFormatPURI), classid, iconpart, efh_write_image);