diff options
author | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-16 23:55:29 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-16 23:55:29 +0800 |
commit | 15acd02d4a9dd0d844f2159e280a43634e3ad060 (patch) | |
tree | 046e77be707fdf0b66bab8ab6d0e4c4d358b24f4 | |
parent | 6bc41914c44faa092fad178f5399ce6517784019 (diff) | |
download | gsoc2013-evolution-15acd02d4a9dd0d844f2159e280a43634e3ad060.tar.gz gsoc2013-evolution-15acd02d4a9dd0d844f2159e280a43634e3ad060.tar.zst gsoc2013-evolution-15acd02d4a9dd0d844f2159e280a43634e3ad060.zip |
i2006-01-16 Harish Krishnaswamy <kharish@novell.com>
* gui/component/addressbook-component.c:
(impl__get_userCreatableItems):
remove shortcut keys (UI Hackfest -
See http://go-evolution.org/Shortcut_Keys_Review).
svn path=/trunk/; revision=31215
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a71f0c30c3..ee94980608 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2006-01-16 Harish Krishnaswamy <kharish@novell.com> + + * gui/component/addressbook-component.c: + (impl__get_userCreatableItems): + remove shortcut keys (UI Hackfest - + See http://go-evolution.org/Shortcut_Keys_Review). + 2005-01-16 Devashish Sharma <sdevashish@novell.com> * importers/evolution-csv-importer.c : Added support for CSV and TAB diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index 9fd0180449..b1928669c2 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -242,7 +242,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[2].description = _("New Address Book"); list->_buffer[2].menuDescription = _("Address _Book"); list->_buffer[2].tooltip = _("Create a new address book"); - list->_buffer[2].menuShortcut = 'b'; + list->_buffer[2].menuShortcut = '\0'; list->_buffer[2].iconName = "stock_addressbook"; list->_buffer[2].type = GNOME_Evolution_CREATABLE_FOLDER; |