mail-notification

Fork of Jean-Yves Lefort's mail-notification, a tray icon to notify of new mail
git clone https://code.djc.id.au/git/mail-notification/
commit d501a645afee5fe12aa73330d6e98d3e8056cd73
parent 77082879b2fead0be507eb38d6da710ae9a4e63f
Author: Dan Callaghan <djc@djc.id.au>
Date:   Sat,  6 Nov 2010 16:57:02 +1000

use new stock icons

Based on mail-notification-5.4-icons.patch from Fedora:
http://pkgs.fedoraproject.org/gitweb/?p=mail-notification.git;a=blob;f=mail-notification-5.4-icons.patch;h=48d54742a23daba497769e6b12554d0b436a02b8;hb=0a002ddd116bd02343a4f9bbf4d0efdf594557ee

Related to Red Hat bug #573809:
https://bugzilla.redhat.com/show_bug.cgi?id=573809

Diffstat:
Msrc/mn-stock.c | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/mn-stock.c b/src/mn-stock.c
@@ -32,11 +32,11 @@ mn_stock_init (void)
     const char	*icon_name;
     const char	*source_stock_id;
   } icons[] = {
-    { MN_STOCK_MAIL,			NULL, "stock_mail" },
-    { MN_STOCK_NO_MAIL,			NULL, "stock_inbox" },
-    { MN_STOCK_LOCAL,			NULL, "stock_folder" },
-    { MN_STOCK_REMOTE,			NULL, "stock_internet" },
-    { MN_STOCK_UNKNOWN,			NULL, "stock_unknown" },
+    { MN_STOCK_MAIL,			NULL, "mail-message-new" },
+    { MN_STOCK_NO_MAIL,			NULL, "mail-notification" },
+    { MN_STOCK_LOCAL,			NULL, "folder" },
+    { MN_STOCK_REMOTE,			NULL, "applications-internet" },
+    { MN_STOCK_UNKNOWN,			NULL, "dialog-question" },
     { MN_STOCK_ERROR,			NULL, NULL, GTK_STOCK_DIALOG_ERROR },
 #if WITH_GMAIL
     { MN_STOCK_GMAIL,			PKGDATADIR G_DIR_SEPARATOR_S "gmail.png" },
@@ -48,14 +48,14 @@ mn_stock_init (void)
     { MN_STOCK_HOTMAIL,			PKGDATADIR G_DIR_SEPARATOR_S "hotmail.png" },
 #endif
 #if WITH_MBOX || WITH_MOZILLA || WITH_MH || WITH_MAILDIR || WITH_SYLPHEED
-    { MN_STOCK_SYSTEM_MAILBOX,		NULL, "system" },
+    { MN_STOCK_SYSTEM_MAILBOX,		NULL, "applications-system" },
 #endif
 #if WITH_EVOLUTION
     { MN_STOCK_EVOLUTION_MAILBOX,	NULL, "evolution" },
 #endif
-    { MN_STOCK_MAIL_READER,		NULL, "stock_mail-handling" },
-    { MN_STOCK_OPEN_MESSAGE,		NULL, "stock_mail-open" },
-    { MN_STOCK_CONSIDER_NEW_MAIL_AS_READ, NULL, "stock_mark" }
+    { MN_STOCK_MAIL_READER,		NULL, "mail-unread" },
+    { MN_STOCK_OPEN_MESSAGE,		NULL, "mail-read" },
+    { MN_STOCK_CONSIDER_NEW_MAIL_AS_READ, NULL, "mail-mark-read" }
   };
   GtkIconFactory *factory;
   GtkIconTheme *icon_theme;