diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-04-20 04:17:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-20 04:17:51 +0800 |
commit | 6c44efe38a69872608ee31954de846aab1a691f2 (patch) | |
tree | af2381f90dc77831c7d652d685b0938a38a4861d /mail/message-list.c | |
parent | d0d8d568ad9a830e50845f3d86fb30105b37d319 (diff) | |
download | gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar.gz gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar.bz2 gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar.lz gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar.xz gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.tar.zst gsoc2013-evolution-6c44efe38a69872608ee31954de846aab1a691f2.zip |
Removed variables that got re-added with the icon-theme patch somehow.
2004-04-19 Jeffrey Stedfast <fejj@ximian.com>
* em-composer-prefs.h: Removed variables that got re-added with
the icon-theme patch somehow.
* em-account-prefs.c: Don't bother keeping global references to
the enable_pixbuf anymore, since it's unnecessary.
svn path=/trunk/; revision=25523
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 661f695b82..23340d08f9 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -157,14 +157,14 @@ enum { static guint message_list_signals [LAST_SIGNAL] = {0, }; static struct { - gchar *icon_name; + char *icon_name; GdkPixbuf *pixbuf; } states_pixmaps [] = { { "stock_mail-unread", NULL }, { "stock_mail-open", NULL }, { "stock_mail-replied", NULL }, - { "stock_mail-unread-multiple", NULL }, - { "stock_mail-open-multiple", NULL }, + { "stock_mail-unread-multiple", NULL }, + { "stock_mail-open-multiple", NULL }, { "", NULL }, { "stock_attach", NULL }, { "stock_mail-priority-high", NULL }, |