aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-09-08 04:46:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-09-08 04:46:08 +0800
commitc0ea8aa685c06b0fb35516451c7196367e774157 (patch)
treedb7c73d55fdac9e375b1efaaf0be897b30289131
parentbe57fd02579babe9d9db2070a87ced35a5da8bf9 (diff)
downloadgsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar.gz
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar.bz2
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar.lz
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar.xz
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.tar.zst
gsoc2013-evolution-c0ea8aa685c06b0fb35516451c7196367e774157.zip
Give the full path of the wax-seal icons.
2001-09-07 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (mail_write_authenticity): Give the full path of the wax-seal icons. svn path=/trunk/; revision=12684
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-format.c4
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);
}