aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-02-17 21:38:58 +0800
committerMilan Crha <mcrha@redhat.com>2014-02-17 21:38:58 +0800
commitd0b147ddb6bb33c1cdf3c8181394a5d4e6b08431 (patch)
treef9e5c9392b04bc48ea78a8a86aa9cb50cd7e23f8 /calendar/gui/dialogs/comp-editor.c
parentad22aaac43b8652785d367a87c896439b3dd7cc9 (diff)
downloadgsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.gz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.bz2
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.lz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.xz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.zst
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.zip
Add shortcuts previously defined by gtk-stock item definitions
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 7653b20d82..86c7993ea2 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -1220,21 +1220,21 @@ static GtkActionEntry core_entries[] = {
{ "close",
"window-close",
N_("_Close"),
- NULL,
+ "<Control>w",
N_("Close the current window"),
G_CALLBACK (action_close_cb) },
{ "copy-clipboard",
"edit-copy",
N_("_Copy"),
- NULL,
+ "<Control>c",
N_("Copy the selection"),
NULL }, /* Handled by EFocusTracker */
{ "cut-clipboard",
"edit-cut",
N_("Cu_t"),
- NULL,
+ "<Control>x",
N_("Cut the selection"),
NULL }, /* Handled by EFocusTracker */
@@ -1248,14 +1248,14 @@ static GtkActionEntry core_entries[] = {
{ "help",
"help-browser",
N_("_Help"),
- NULL,
+ "F1",
N_("View help"),
G_CALLBACK (action_help_cb) },
{ "paste-clipboard",
"edit-paste",
N_("_Paste"),
- NULL,
+ "<Control>v",
N_("Paste the clipboard"),
NULL }, /* Handled by EFocusTracker */
@@ -1276,7 +1276,7 @@ static GtkActionEntry core_entries[] = {
{ "save",
"document-save",
N_("_Save"),
- NULL,
+ "<Control>s",
N_("Save current changes"),
G_CALLBACK (action_save_cb) },