aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-utils.c
diff options
context:
space:
mode:
authorAlex Kloss <alexkloss@att.net>2007-12-08 02:39:06 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-12-08 02:39:06 +0800
commit0393621697fb8e1b58b768978e3963793d413a17 (patch)
tree1df5010e979a7440160f010ed2fd0a3268ec241b /mail/em-utils.c
parent9fe2bb92d11a4eec1dcfcd1a585dc095ced1672e (diff)
downloadgsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar.gz
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar.bz2
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar.lz
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar.xz
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.tar.zst
gsoc2013-evolution-0393621697fb8e1b58b768978e3963793d413a17.zip
** Fix for bug #329706
2007-12-07 Alex Kloss <alexkloss@att.net> ** Fix for bug #329706 * em-utils.c (em_utils_prompt_user): Add mnemonic 'd' to 'Do not show...' checkbox * mail.error.xml: Remove redundant 'Send anyway' label Reorder buttons to 'Send','Cancel' as per HIG svn path=/trunk/; revision=34668
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r--mail/em-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c
index 760dd89216..5aa09faf67 100644
--- a/mail/em-utils.c
+++ b/mail/em-utils.c
@@ -117,7 +117,7 @@ em_utils_prompt_user(GtkWindow *parent, const char *promptkey, const char *tag,
va_end(ap);
if (promptkey) {
- check = gtk_check_button_new_with_label (_("Do not show this message again."));
+ check = gtk_check_button_new_with_mnemonic (_("_Do not show this message again."));
gtk_container_set_border_width((GtkContainer *)check, 12);
gtk_box_pack_start ((GtkBox *)((GtkDialog *) mbox)->vbox, check, TRUE, TRUE, 0);
gtk_widget_show (check);