diff options
author | Milan Crha <mcrha@redhat.com> | 2014-02-17 21:38:58 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-17 21:38:58 +0800 |
commit | d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431 (patch) | |
tree | f9e5c9392b04bc48ea78a8a86aa9cb50cd7e23f8 /calendar/gui/dialogs | |
parent | ad22aaac43b8652785d367a87c896439b3dd7cc9 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 12 |
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) }, |