diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-01-16 23:57:02 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-16 23:57:02 +0800 |
commit | 20a6d1935515f9ca4cb6317f386e8eb644b81547 (patch) | |
tree | f1a9dd3916b0af916183f8ae95026d391ea0b80c /calendar/gui/calendar-component.c | |
parent | 15acd02d4a9dd0d844f2159e280a43634e3ad060 (diff) | |
download | gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.gz gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.zst gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.zip |
remove shortcut keys (UI Hackfest - See
2006-01-16 Harish Krishnaswamy <kharish@novell.com>
* gui/calendar-component.c: (impl__get_userCreatableItems):
* gui/memos-component.c: (impl__get_userCreatableItems):
* gui/tasks-component.c: (impl__get_userCreatableItems):
remove shortcut keys (UI Hackfest -
See http://go-evolution.org/Shortcut_Keys_Review).
svn path=/trunk/; revision=31216
Diffstat (limited to 'calendar/gui/calendar-component.c')
-rw-r--r-- | calendar/gui/calendar-component.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 93684da111..b620715c91 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -1473,7 +1473,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[2].description = _("New all day appointment"); list->_buffer[2].menuDescription = _("All Day A_ppointment"); list->_buffer[2].tooltip = _("Create a new all-day appointment"); - list->_buffer[2].menuShortcut = 'p'; + list->_buffer[2].menuShortcut = '\0'; list->_buffer[2].iconName = "stock_new-24h-appointment"; list->_buffer[2].type = GNOME_Evolution_CREATABLE_OBJECT; @@ -1481,7 +1481,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[3].description = _("New calendar"); list->_buffer[3].menuDescription = _("Cale_ndar"); list->_buffer[3].tooltip = _("Create a new calendar"); - list->_buffer[3].menuShortcut = 'n'; + list->_buffer[3].menuShortcut = '\0'; list->_buffer[3].iconName = "stock_calendar"; list->_buffer[3].type = GNOME_Evolution_CREATABLE_FOLDER; |