diff options
author | Michael Terry <mike@mterry.name> | 2004-04-19 23:20:48 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-04-19 23:20:48 +0800 |
commit | 69bf3985321f43107a694855c764500c89b05deb (patch) | |
tree | 710f94bb8dd3378e397b94cf51a46d2f8dfbd293 /mail/mail-mt.c | |
parent | cc309ba614fec0dca286fd20d97ab511654a331f (diff) | |
download | gsoc2013-evolution-69bf3985321f43107a694855c764500c89b05deb.tar.gz gsoc2013-evolution-69bf3985321f43107a694855c764500c89b05deb.tar.zst gsoc2013-evolution-69bf3985321f43107a694855c764500c89b05deb.zip |
mail-component.c
2004-04-19 Michael Terry <mike@mterry.name>
* GNOME_Evolution_Mail.server.in.in:
* em-account-prefs.[ch]:
* em-composer-prefs.[ch]:
* em-folder-browser.c:
* em-folder-tree.c:
* em-folder-view.c:
* em-format-html-display.c:
* em-format-html.[ch]:
* em-popup.c:
* mail-component.c
* mail-config-druid.c:
* mail-config.glade:
* mail-mt.c:
* mail-send-recv.c:
* message-list.c:
* message-tag-followup.c:
* message-tags.glade: Update the mailer to use icon themes through the
EIconFactory object in e-util
svn path=/trunk/; revision=25517
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 7afb2efe18..4c353195de 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -22,6 +22,7 @@ #include "camel/camel-operation.h" #include "e-activity-handler.h" +#include <e-util/e-icon-factory.h> #include "mail-config.h" #include "camel/camel-url.h" @@ -52,9 +53,6 @@ struct _mail_msg_priv { int activity_id; }; -/* This is used for the mail status bar, cheap and easy */ -#include "art/mail-new.xpm" - static GdkPixbuf *progress_icon = NULL; /* mail_msg stuff */ @@ -894,7 +892,7 @@ static void do_op_status(struct _mail_msg *mm) data->activity_state = 1; if (progress_icon == NULL) - progress_icon = gdk_pixbuf_new_from_xpm_data ((const char **)mail_new_xpm); + progress_icon = e_icon_factory_get_icon ("stock_mail-unread", 16); MAIL_MT_UNLOCK (mail_msg_lock); if (msg->ops->describe_msg) |