diff options
author | Michael Monreal <mmonreal@svn.gnome.org> | 2007-10-31 18:49:24 +0800 |
---|---|---|
committer | Michael Monreal <mmonreal@src.gnome.org> | 2007-10-31 18:49:24 +0800 |
commit | 6371f6744d19e9b4723b91f560f731ebcbc23c9e (patch) | |
tree | 961db49bafe5941a573b4dbdcd4c13837fca3ff9 /addressbook | |
parent | 53c075e4c544f95de4a55dae1c73621e165c08eb (diff) | |
download | gsoc2013-evolution-6371f6744d19e9b4723b91f560f731ebcbc23c9e.tar.gz gsoc2013-evolution-6371f6744d19e9b4723b91f560f731ebcbc23c9e.tar.zst gsoc2013-evolution-6371f6744d19e9b4723b91f560f731ebcbc23c9e.zip |
** Fix for bug #484064
2007-10-31 Michael Monreal <mmonreal@svn.gnome.org>
** Fix for bug #484064
* gui/component/addressbook-view.c:
* gui/widgets/e-addressbook-view.c:
Use mail-message-new instead of mail-send for composing
mail to contact, contacts or group.
svn path=/trunk/; revision=34464
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 9 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-view.c | 2 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 6 |
3 files changed, 13 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 05f6fde121..2ce3cf36f8 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,12 @@ +2007-10-31 Michael Monreal <mmonreal@svn.gnome.org> + + ** Fix for bug #484064 + + * gui/component/addressbook-view.c: + * gui/widgets/e-addressbook-view.c: + Use mail-message-new instead of mail-send for composing + mail to contact, contacts or group. + 2007-10-29 Kjartan Maraas <kmaraas@gnome.org> * gui/contact-editor/e-contact-editor.c: diff --git a/addressbook/gui/component/addressbook-view.c b/addressbook/gui/component/addressbook-view.c index 8d6bbf8445..8fcf39cc29 100644 --- a/addressbook/gui/component/addressbook-view.c +++ b/addressbook/gui/component/addressbook-view.c @@ -623,7 +623,7 @@ static EPixmap pixmaps [] = { E_PIXMAP ("/commands/ContactsPrintPreview", "document-print-preview", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/ContactsSaveAsVCard", "document-save-as", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/ContactsSendContactToOther", "mail-forward", E_ICON_SIZE_MENU), - E_PIXMAP ("/commands/ContactsSendMessageToContact", "mail-send", E_ICON_SIZE_MENU), + E_PIXMAP ("/commands/ContactsSendMessageToContact", "mail-message-new", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/FolderCopy", "edit-copy", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/FolderDelete", "edit-delete", E_ICON_SIZE_MENU), E_PIXMAP ("/commands/FolderMove", "stock_folder-move", E_ICON_SIZE_MENU), diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 767d13c56a..483b3b4162 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -941,9 +941,9 @@ static EPopupItem eabv_popup_items[] = { { E_POPUP_ITEM, "30.saveas", N_("_Save as VCard..."), save_as, NULL, "document-save-as", 0, EAB_POPUP_SELECT_ANY }, { E_POPUP_ITEM, "40.forward", N_("_Forward Contact"), send_as, NULL, "mail-forward", EAB_POPUP_SELECT_ONE }, { E_POPUP_ITEM, "40.forward", N_("_Forward Contacts"), send_as, NULL, "mail-forward", EAB_POPUP_SELECT_MANY }, - { E_POPUP_ITEM, "50.mailto", N_("Send _Message to Contact"), send_to, NULL, "mail-send", EAB_POPUP_SELECT_ONE|EAB_POPUP_SELECT_EMAIL|EAB_POPUP_CONTACT }, - { E_POPUP_ITEM, "50.mailto", N_("Send _Message to List"), send_to, NULL, "mail-send", EAB_POPUP_SELECT_ONE|EAB_POPUP_SELECT_EMAIL|EAB_POPUP_LIST }, - { E_POPUP_ITEM, "50.mailto", N_("Send _Message to Contacts"), send_to, NULL, "mail-send", EAB_POPUP_SELECT_MANY|EAB_POPUP_SELECT_EMAIL }, + { E_POPUP_ITEM, "50.mailto", N_("Send _Message to Contact"), send_to, NULL, "mail-message-new", EAB_POPUP_SELECT_ONE|EAB_POPUP_SELECT_EMAIL|EAB_POPUP_CONTACT }, + { E_POPUP_ITEM, "50.mailto", N_("Send _Message to List"), send_to, NULL, "mail-message-new", EAB_POPUP_SELECT_ONE|EAB_POPUP_SELECT_EMAIL|EAB_POPUP_LIST }, + { E_POPUP_ITEM, "50.mailto", N_("Send _Message to Contacts"), send_to, NULL, "mail-message-new", EAB_POPUP_SELECT_MANY|EAB_POPUP_SELECT_EMAIL }, { E_POPUP_ITEM, "60.print", N_("_Print"), print, NULL, "document-print", 0, EAB_POPUP_SELECT_ANY }, { E_POPUP_BAR, "70.bar" }, |