diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-05-27 22:22:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-05-27 22:22:55 +0800 |
commit | aa6b661fdfe7416a58ac3fc93926b798260c54bc (patch) | |
tree | 30eb02b865d4b766e60da4cdc109adf625955e39 /mail | |
parent | 55c4f30db73b6078d8d0b8bd74a038d39f096b04 (diff) | |
download | gsoc2013-evolution-aa6b661fdfe7416a58ac3fc93926b798260c54bc.tar.gz gsoc2013-evolution-aa6b661fdfe7416a58ac3fc93926b798260c54bc.tar.zst gsoc2013-evolution-aa6b661fdfe7416a58ac3fc93926b798260c54bc.zip |
Revert "Work around another dropped gnome-icon-theme icon."
This reverts commit 43e2c871a418b560b391af00df2b10896055026c.
Correct icon name is "mail-mark-notjunk". The previous fix got
clobbered by the express2 merge.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-reader.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index f86b2257a9..70bed6b92e 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -1288,8 +1288,8 @@ static GtkActionEntry mail_reader_entries[] = { N_("Mark the selected messages as junk"), G_CALLBACK (action_mail_mark_junk_cb) }, - { "mail-mark-not-junk", - "mail-mark-not-junk", + { "mail-mark-notjunk", + "mail-mark-notjunk", N_("_Not Junk"), "<Shift><Control>j", N_("Mark the selected messages as not being junk"), @@ -1598,9 +1598,9 @@ static EPopupActionEntry mail_reader_popup_entries[] = { N_("Mark as _Junk"), "mail-mark-junk" }, - { "mail-popup-mark-not-junk", + { "mail-popup-mark-notjunk", N_("Mark as _Not Junk"), - "mail-mark-not-junk" }, + "mail-mark-notjunk" }, { "mail-popup-mark-read", N_("Mar_k as Read"), @@ -2309,7 +2309,7 @@ mail_reader_update_actions (EMailReader *reader) action = e_mail_reader_get_action (reader, action_name); gtk_action_set_sensitive (action, sensitive); - action_name = "mail-mark-not-junk"; + action_name = "mail-mark-notjunk"; sensitive = selection_has_junk_messages; action = e_mail_reader_get_action (reader, action_name); gtk_action_set_sensitive (action, sensitive); |