diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-popup.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 22f373fb35..485c22c12a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2007-10-09 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #477045 + + * em-popup.c: (EPopupItem emp_standard_uri_popups[]): Use 'contact-new' + icon name rather than 'edit-add' for "Add to address book" item. + 2007-10-05 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #468736 diff --git a/mail/em-popup.c b/mail/em-popup.c index d9c11bd5c4..3ed3a564e5 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -632,7 +632,7 @@ emp_uri_popup_address_add(EPopup *ep, EPopupItem *item, void *data) static EPopupItem emp_standard_uri_popups[] = { { E_POPUP_ITEM, "00.uri.00", N_("_Open Link in Browser"), emp_uri_popup_link_open, NULL, NULL, EM_POPUP_URI_HTTP }, { E_POPUP_ITEM, "00.uri.10", N_("_Send New Message To..."), emp_uri_popup_address_send, NULL, "mail-message-new", EM_POPUP_URI_MAILTO }, - { E_POPUP_ITEM, "00.uri.20", N_("_Add to Address Book"), emp_uri_popup_address_add, NULL, "edit-add", EM_POPUP_URI_MAILTO }, + { E_POPUP_ITEM, "00.uri.20", N_("_Add to Address Book"), emp_uri_popup_address_add, NULL, "contact-new", EM_POPUP_URI_MAILTO }, }; /* ********************************************************************** */ |