aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-10-04 03:07:00 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-10-04 03:07:00 +0800
commit819455addbc6b470ac15d063b9bfbea6eb8f32a5 (patch)
tree2650aa4c5c75c3ce7606f24aa657a5a4e92d7189 /mail
parentcb9d644a2ee55614b35dfdec6a7731db4ed1e35c (diff)
downloadgsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar.gz
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar.bz2
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar.lz
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar.xz
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.tar.zst
gsoc2013-evolution-819455addbc6b470ac15d063b9bfbea6eb8f32a5.zip
Don't use the wax-seal icons for the pgp stuff anymore, use Jimmac's new
2001-10-03 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (mail_write_authenticity): Don't use the wax-seal icons for the pgp stuff anymore, use Jimmac's new icons instead. svn path=/trunk/; revision=13383
Diffstat (limited to 'mail')
-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 53658f3a07..2999bb83c5 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-03 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-format.c (mail_write_authenticity): Don't use the wax-seal
+ icons for the pgp stuff anymore, use Jimmac's new icons instead.
+
2001-10-03 <NotZed@Ximian.com>
* mail-folder-cache.c (folder_changed): Dont wait for event to
diff --git a/mail/mail-format.c b/mail/mail-format.c
index a82f249267..6ed7aafdc8 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -1443,7 +1443,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 (EVOLUTION_ICONSDIR "/wax-seal.png", md),
+ get_url_for_icon (EVOLUTION_ICONSDIR "/pgp-signature-ok.png", md),
str);
g_free (str);
} else {
@@ -1454,7 +1454,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 (EVOLUTION_ICONSDIR "/wax-seal-broken.png", md),
+ get_url_for_icon (EVOLUTION_ICONSDIR "/pgp-signature-bad.png", md),
str);
g_free (str);
}