diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 76b734b563..55ef4587e3 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-06-28 Not Zed <NotZed@Ximian.com> + + * gui/component/addressbook-component.c + (impl__get_userCreatableItems): fix shortcuts. #56746 + 2004-06-25 Hans Petter Jansson <hpj@ximian.com> * gui/meging/eab-contact-compare.[ch] (eab_contact_compare_file_as): diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index 6223164d62..fa1bc10967 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -107,9 +107,9 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[2].id = "address_book"; list->_buffer[2].description = _("New Contacts Group"); - list->_buffer[2].menuDescription = _("_Contacts Group"); + list->_buffer[2].menuDescription = _("Contacts Grou_p"); list->_buffer[2].tooltip = _("Create a new contacts group"); - list->_buffer[2].menuShortcut = 'g'; + list->_buffer[2].menuShortcut = 'p'; list->_buffer[2].iconName = "stock_addressbook"; list->_buffer[2].type = GNOME_Evolution_CREATABLE_FOLDER; |