diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-19 00:25:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-19 00:53:33 +0800 |
commit | 8c37f8d4a598c4074179cdf9df1c525341f691b7 (patch) | |
tree | 53533f7af825de990998ec0e69542668b188f839 /mail/em-format-html-display.c | |
parent | a6de00fcc291115c65cd4495304ff89b0b4ef15c (diff) | |
download | gsoc2013-evolution-8c37f8d4a598c4074179cdf9df1c525341f691b7.tar.gz gsoc2013-evolution-8c37f8d4a598c4074179cdf9df1c525341f691b7.tar.zst gsoc2013-evolution-8c37f8d4a598c4074179cdf9df1c525341f691b7.zip |
Bug 612209 - Missing stock icons in Evolution
Bundle needed stock icons recently dropped from gnome-icon-theme.
Need to reevaluate which icons we really need and drop the rest.
Many are not Tango-compliant and look dated and out of place.
The following icon names are bundled:
stock_alarm
stock_bell
stock_check-filled
stock_contact-list
stock_insert-note
stock_mail-filters-apply
stock_mail-flag-for-followup
stock_mail-flag-for-followup-done
stock_mail-open-multiple
stock_mail-unread-multiple
stock_new-meeting
stock_score-high
stock_score-higher
stock_score-highest
stock_score-low
stock_score-lower
stock_score-lowest
stock_score-normal
stock_shared-by-me
stock_shared-to-me
stock_show-all
stock_signature
stock_signature-bad
stock_signature-ok
stock_task
stock_task-assigned
stock_task-assigned-to
stock_task-recurring
stock_timezone
stock_todo
stock_video-conferencing
stock_view-details
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r-- | mail/em-format-html-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index a0ed73e34a..14a74af12d 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -713,7 +713,7 @@ efhd_message_prefix(EMFormat *emf, CamelStream *stream, CamelMimePart *part, EMF camel_stream_printf(stream, "<table border=1 width=\"100%%\" cellspacing=2 cellpadding=2><tr>"); comp = camel_folder_get_message_user_tag(emf->folder, emf->uid, "completed-on"); - iconpath = e_icon_factory_get_icon_filename (comp && comp[0] ? "stock_flag-for-followup-done" : "stock_flag-for-followup", GTK_ICON_SIZE_MENU); + iconpath = e_icon_factory_get_icon_filename (comp && comp[0] ? "stock_mail-flag-for-followup-done" : "stock_mail-flag-for-followup", GTK_ICON_SIZE_MENU); if (iconpath) { CamelMimePart *iconpart; |