diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-10 03:15:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-10 03:15:57 +0800 |
commit | 59d1f3405c653eb45ca462508d5e6ed968513e42 (patch) | |
tree | 46f10b927f6bf08850019ce92b55cc5d65203df9 | |
parent | 2b9c72826a8574385d0360267217cc068e27a910 (diff) | |
download | gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar.gz gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar.bz2 gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar.lz gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar.xz gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.tar.zst gsoc2013-evolution-59d1f3405c653eb45ca462508d5e6ed968513e42.zip |
Add missing accelerator for File -> Print.
svn path=/branches/kill-bonobo/; revision=37023
-rw-r--r-- | addressbook/gui/component/e-book-shell-view-actions.c | 2 | ||||
-rw-r--r-- | calendar/modules/e-cal-shell-view-actions.c | 2 | ||||
-rw-r--r-- | calendar/modules/e-memo-shell-view-actions.c | 2 | ||||
-rw-r--r-- | calendar/modules/e-task-shell-view-actions.c | 2 | ||||
-rw-r--r-- | mail/e-mail-reader.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/gui/component/e-book-shell-view-actions.c b/addressbook/gui/component/e-book-shell-view-actions.c index 457f15cf1b..fc9e6b99db 100644 --- a/addressbook/gui/component/e-book-shell-view-actions.c +++ b/addressbook/gui/component/e-book-shell-view-actions.c @@ -670,7 +670,7 @@ static GtkActionEntry contact_entries[] = { { "contact-print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", N_("Print selected contacts"), G_CALLBACK (action_contact_print_cb) }, diff --git a/calendar/modules/e-cal-shell-view-actions.c b/calendar/modules/e-cal-shell-view-actions.c index 22b2250acb..0631b6e088 100644 --- a/calendar/modules/e-cal-shell-view-actions.c +++ b/calendar/modules/e-cal-shell-view-actions.c @@ -633,7 +633,7 @@ static GtkActionEntry calendar_entries[] = { { "calendar-print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", N_("Print this calendar"), G_CALLBACK (action_calendar_print_cb) }, diff --git a/calendar/modules/e-memo-shell-view-actions.c b/calendar/modules/e-memo-shell-view-actions.c index 627f698449..8975edf71a 100644 --- a/calendar/modules/e-memo-shell-view-actions.c +++ b/calendar/modules/e-memo-shell-view-actions.c @@ -582,7 +582,7 @@ static GtkActionEntry memo_entries[] = { { "memo-list-print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", N_("Print the list of memos"), G_CALLBACK (action_memo_list_print_cb) }, diff --git a/calendar/modules/e-task-shell-view-actions.c b/calendar/modules/e-task-shell-view-actions.c index 80ee864db0..c1273633c9 100644 --- a/calendar/modules/e-task-shell-view-actions.c +++ b/calendar/modules/e-task-shell-view-actions.c @@ -707,7 +707,7 @@ static GtkActionEntry task_entries[] = { { "task-list-print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", N_("Print the list of tasks"), G_CALLBACK (action_task_list_print_cb) }, diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index 5a623baa96..bdf9ec84b0 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -1230,7 +1230,7 @@ static GtkActionEntry mail_reader_entries[] = { { "mail-print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", N_("Print this message"), G_CALLBACK (action_mail_print_cb) }, |