diff options
author | Hao Sheng <hao.sheng@sun.com> | 2005-01-27 17:39:55 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-01-27 17:39:55 +0800 |
commit | 6c59e5fa6c2dd5bfbf67a874bf7786d22db7f4e8 (patch) | |
tree | ef0acf0c5d0d13049cca28c4c4dec6badc15e83a /addressbook | |
parent | d22c44df759736e454bf009addc6167f4bb8aea6 (diff) | |
download | gsoc2013-evolution-6c59e5fa6c2dd5bfbf67a874bf7786d22db7f4e8.tar.gz gsoc2013-evolution-6c59e5fa6c2dd5bfbf67a874bf7786d22db7f4e8.tar.zst gsoc2013-evolution-6c59e5fa6c2dd5bfbf67a874bf7786d22db7f4e8.zip |
add access key to 'Member' Button.
2005-01-26 Hao Sheng <hao.sheng@sun.com>
* gui/contact-list-editor/e-contact-list-editor.c:
(setup_name_selector): add access key to 'Member' Button.
svn path=/trunk/; revision=28576
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index bc7152414c..1f7d7d0a95 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2005-01-26 Hao Sheng <hao.sheng@sun.com> + + * gui/contact-list-editor/e-contact-list-editor.c: + (setup_name_selector): add access key to 'Member' Button. + 2005-01-25 Rodrigo Moya <rodrigo@novell.com> * gui/contact-editor/e-contact-editor.c (categories_clicked): use the diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index ce44c109f7..3915dde094 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -706,7 +706,7 @@ setup_name_selector (EContactListEditor *editor) editor->name_selector = e_name_selector_new (); name_selector_model = e_name_selector_peek_model (editor->name_selector); - e_name_selector_model_add_section (name_selector_model, "Members", gettext ("Members"), NULL); + e_name_selector_model_add_section (name_selector_model, "Members", gettext ("_Members"), NULL); name_selector_dialog = e_name_selector_peek_dialog (editor->name_selector); gtk_window_set_title (GTK_WINDOW (name_selector_dialog), _("Contact List Members")); |