diff options
author | Milan Crha <mcrha@redhat.com> | 2007-10-09 13:29:23 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-10-09 13:29:23 +0800 |
commit | 4560333ccff61f2fdddf8d7eca8504ac1c2685dd (patch) | |
tree | dbfc951365b814f430569fb1ccf01c69cfa18b83 /mail | |
parent | 60eaeeecdcbea17c4b9f1495b0d0966f7c9c48f3 (diff) | |
download | gsoc2013-evolution-4560333ccff61f2fdddf8d7eca8504ac1c2685dd.tar.gz gsoc2013-evolution-4560333ccff61f2fdddf8d7eca8504ac1c2685dd.tar.zst gsoc2013-evolution-4560333ccff61f2fdddf8d7eca8504ac1c2685dd.zip |
** Fix for bug #477045
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.
svn path=/trunk/; revision=34363
Diffstat (limited to 'mail')
-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 }, }; /* ********************************************************************** */ |