diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-08-31 06:11:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-31 06:11:55 +0800 |
commit | 06c449751cab10e94281911a4dba703616754c52 (patch) | |
tree | 8b91646a5cfac5152ca72d7e8ff92beee9bd360c /widgets | |
parent | 7217b1b3d2a1e2387dcd6995e8d6f59b37938539 (diff) | |
download | gsoc2013-evolution-06c449751cab10e94281911a4dba703616754c52.tar.gz gsoc2013-evolution-06c449751cab10e94281911a4dba703616754c52.tar.zst gsoc2013-evolution-06c449751cab10e94281911a4dba703616754c52.zip |
** Fixes bug #549968
2008-08-30 Matthew Barnes <mbarnes@redhat.com>
** 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
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 7 | ||||
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 2 |
2 files changed, 8 insertions, 1 deletions
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 <mbarnes@redhat.com> + + ** 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 <mbarnes@redhat.com> ** 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 ("<submenu"); g_string_append (menuitems, " name=\"RecentDocsSubmenu\""); g_string_append_printf (menuitems, " sensitive=\"%s\"", items ? "1" : "0"); - g_string_append_printf (menuitems, " label=\"%s\"", _("Recent Docu_ments")); + g_string_append_printf (menuitems, " label=\"%s\"", _("Recent _Documents")); g_string_append (menuitems, ">\n"); for (l = g_list_first (items), i = 1; l && i <= limit; l = l->next, ++i) { |