aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-16 23:57:02 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-16 23:57:02 +0800
commit20a6d1935515f9ca4cb6317f386e8eb644b81547 (patch)
treef1a9dd3916b0af916183f8ae95026d391ea0b80c /calendar/gui
parent15acd02d4a9dd0d844f2159e280a43634e3ad060 (diff)
downloadgsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar
gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.gz
gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.bz2
gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.lz
gsoc2013-evolution-20a6d1935515f9ca4cb6317f386e8eb644b81547.tar.xz
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')
-rw-r--r--calendar/gui/calendar-component.c4
-rw-r--r--calendar/gui/memos-component.c2
-rw-r--r--calendar/gui/tasks-component.c4
3 files changed, 5 insertions, 5 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;
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index 81f5fd1f47..04178500cb 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -1166,7 +1166,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
list->_buffer[1].description = _("New memo list");
list->_buffer[1].menuDescription = _("Memo l_ist");
list->_buffer[1].tooltip = _("Create a new memo list");
- list->_buffer[1].menuShortcut = 'i';
+ list->_buffer[1].menuShortcut = '\0';
list->_buffer[1].iconName = "stock_notes";
list->_buffer[1].type = GNOME_Evolution_CREATABLE_FOLDER;
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c
index 83398734d2..021cf3dbae 100644
--- a/calendar/gui/tasks-component.c
+++ b/calendar/gui/tasks-component.c
@@ -1181,7 +1181,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
list->_buffer[1].description = _("New assigned task");
list->_buffer[1].menuDescription = _("Assigne_d Task");
list->_buffer[1].tooltip = _("Create a new assigned task");
- list->_buffer[1].menuShortcut = 'd';
+ list->_buffer[1].menuShortcut = '\0';
list->_buffer[1].iconName = "stock_task";
list->_buffer[1].type = GNOME_Evolution_CREATABLE_OBJECT;
@@ -1189,7 +1189,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
list->_buffer[2].description = _("New task list");
list->_buffer[2].menuDescription = _("Task l_ist");
list->_buffer[2].tooltip = _("Create a new task list");
- list->_buffer[2].menuShortcut = 'i';
+ list->_buffer[2].menuShortcut = '\0';
list->_buffer[2].iconName = "stock_todo";
list->_buffer[2].type = GNOME_Evolution_CREATABLE_FOLDER;