diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-format.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 69a2a57317..e909d004d3 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-09-07 Jeffrey Stedfast <fejj@ximian.com> + + * mail-format.c (mail_write_authenticity): Give the full path of + the wax-seal icons. + 2001-09-06 Chris Toshok <toshok@ximian.com> * component-factory.c (notify_listener): new function, to notify diff --git a/mail/mail-format.c b/mail/mail-format.c index 4e6dcd474a..03c7df0157 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1392,7 +1392,7 @@ mail_write_authenticity (MailDisplay *md, CamelCipherValidity *valid) "<hr>\n<table><tr valign=top>" "<td><img src=\"%s\"></td>" "<td><font size=-1>%s<br><br>", - get_url_for_icon ("wax-seal.png", md), + get_url_for_icon (EVOLUTION_ICONSDIR "/wax-seal.png", md), str); g_free (str); } else { @@ -1403,7 +1403,7 @@ mail_write_authenticity (MailDisplay *md, CamelCipherValidity *valid) "<hr>\n<table><tr valign=top>" "<td><img src=\"%s\"></td>" "<td><font size=-1>%s<br><br>", - get_url_for_icon ("wax-seal-broken.png", md), + get_url_for_icon (EVOLUTION_ICONSDIR "/wax-seal-broken.png", md), str); g_free (str); } |