From 06c449751cab10e94281911a4dba703616754c52 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 30 Aug 2008 22:11:55 +0000 Subject: ** Fixes bug #549968 2008-08-30 Matthew Barnes ** Fixes bug #549968 * calendar/gui/dialogs/comp-editor.c (comp_editor_init): * widgets/misc/e-attachment-bar.c (e_attachment_bar_bonobo_ui_populate_with): Use the same mnemonic for "Recent Documents" as composer. svn path=/branches/kill-bonobo/; revision=36226 --- calendar/ChangeLog | 7 +++++++ calendar/gui/dialogs/comp-editor.c | 2 +- widgets/misc/ChangeLog | 7 +++++++ widgets/misc/e-attachment-bar.c | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 752760cc54..4768f8b834 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2008-08-30 Matthew Barnes + + ** Fixes part of bug #549968 + + * gui/dialogs/comp-editor.c (comp_editor_init): + Use the same mnemonic for "Recent Documents" as composer. + 2008-08-30 Matthew Barnes ** Fixes bug #549967 diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 3ae846ac79..441358adc8 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1763,7 +1763,7 @@ comp_editor_init (CompEditor *editor) NULL, NULL); /* no callback */ action = e_attachment_bar_recent_action_new ( E_ATTACHMENT_BAR (priv->attachment_bar), - "attach-recent", _("Recent Docu_ments")); + "attach-recent", _("Recent _Documents")); gtk_action_group_add_action (action_group, action); gtk_ui_manager_insert_action_group ( priv->manager, action_group, 0); diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 7f8567f96b..2d100b24ce 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,10 @@ +2008-08-30 Matthew Barnes + + ** Fixes part of bug #549968 + + * e-attachment-bar.c (e_attachment_bar_bonobo_ui_populate_with): + Use the same mnemonic for "Recent Documents" as composer. + 2008-08-14 Matthew Barnes ** Fixes part of bug #547411 diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 3da833b7ec..4536ab0233 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -1378,7 +1378,7 @@ e_attachment_bar_bonobo_ui_populate_with_recent (BonoboUIComponent *uic, const c menuitems = g_string_new ("\n"); for (l = g_list_first (items), i = 1; l && i <= limit; l = l->next, ++i) { -- cgit