diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:23:06 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:23:06 +0800 |
commit | 68b50c270671de5d3e854ff949efcd66f4c2f745 (patch) | |
tree | 05d563948b0cabe9cd78508fa9a9d199949ad05f /addressbook | |
parent | b977b54e2febcb4cb767dcf5e26a273f86e7b5db (diff) | |
download | gsoc2013-evolution-68b50c270671de5d3e854ff949efcd66f4c2f745.tar.gz gsoc2013-evolution-68b50c270671de5d3e854ff949efcd66f4c2f745.tar.zst gsoc2013-evolution-68b50c270671de5d3e854ff949efcd66f4c2f745.zip |
** Fix for bug #445812 from Gilles Dartiguelongue
svn path=/trunk/; revision=33699
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 96494e4230..932c016cdd 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2007-06-18 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #445812 from Gilles Dartiguelongue + + * gui/widgets/eab-contact-display.c: + 2007-06-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #325882 diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index c45ac78e7b..d6f020324f 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -170,8 +170,8 @@ eab_selection_clear_event(GtkWidget *widget, GdkEventSelection *event, EABContac static EPopupItem eab_uri_popups[] = { { E_POPUP_ITEM, "05.open", N_("_Open Link in Browser"), eab_uri_popup_link_open, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO }, - { E_POPUP_ITEM, "10.copy", N_("_Copy Link Location"), eab_uri_popup_link_copy, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO }, - { E_POPUP_ITEM, "15.send", N_("_Send New Message To..."), eab_uri_popup_address_send, NULL, NULL, EAB_POPUP_URI_MAILTO}, + { E_POPUP_ITEM, "10.copy", N_("_Copy Link Location"), eab_uri_popup_link_copy, NULL, "gtk-copy", EAB_POPUP_URI_NOT_MAILTO }, + { E_POPUP_ITEM, "15.send", N_("_Send New Message To..."), eab_uri_popup_address_send, NULL, "stock_mail-compose", EAB_POPUP_URI_MAILTO}, { E_POPUP_ITEM, "20.copy", N_("Copy _Email Address"), eab_uri_popup_email_address_copy, NULL, "gtk-copy", EAB_POPUP_URI_MAILTO}, }; |