aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Turner <cillian64@googlemail.com>2007-12-04 20:21:49 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-12-04 20:21:49 +0800
commitc896b43ec99cb48323d5413c9507ea3d65a26e5b (patch)
treed6ca295d402c42880dccfff3991a6ccf976ba636 /plugins
parentd4eba934b557652534b8f56b0425b19120114e73 (diff)
downloadgsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar.gz
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar.bz2
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar.lz
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar.xz
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.tar.zst
gsoc2013-evolution-c896b43ec99cb48323d5413c9507ea3d65a26e5b.zip
** Fix for bug #466241
2007-12-04 David Turner <cillian64@googlemail.com> ** Fix for bug #466241 * plugins/exchange-operations/exchange-account-setup.c: (org_gnome_exchange_auth_section): Added a mnemonic to the Authentication Type label/dropdown * mail/mail-config.glade: Added a mnemonic to "Authentication type" in the recieving mail section of configuration svn path=/trunk/; revision=34643
Diffstat (limited to 'plugins')
-rw-r--r--plugins/exchange-operations/ChangeLog7
-rw-r--r--plugins/exchange-operations/exchange-account-setup.c6
2 files changed, 10 insertions, 3 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 9c7cec7959..f6e55929b1 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,10 @@
+2007-12-04 David Turner <cillian64@googlemail.com>
+
+ ** Fix for bug #466241
+
+ * exchange-account-setup.c: (org_gnome_exchange_auth_section):
+ Added a mnemonic to the Authentication Type label/dropdown
+
2007-11-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #495123
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c
index 0213247c5a..7109fccb08 100644
--- a/plugins/exchange-operations/exchange-account-setup.c
+++ b/plugins/exchange-operations/exchange-account-setup.c
@@ -837,8 +837,8 @@ org_gnome_exchange_auth_section (EPlugin *epl, EConfigHookItemFactoryData *data)
vbox = gtk_vbox_new (FALSE, 6);
- label_text = g_strdup_printf("<b>%s</b>", _("Authentication Type"));
- auth_label = gtk_label_new (label_text);
+ label_text = g_strdup_printf("<b>%s</b>", _("_Authentication Type"));
+ auth_label = gtk_label_new_with_mnemonic (label_text);
g_free (label_text);
gtk_label_set_justify (GTK_LABEL (auth_label), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment (GTK_MISC (auth_label), 0, 0.5);
@@ -848,8 +848,8 @@ org_gnome_exchange_auth_section (EPlugin *epl, EConfigHookItemFactoryData *data)
label_hide = gtk_label_new("\n");
hbox = gtk_hbox_new (FALSE, 6);
-
dropdown = (GtkComboBox * )gtk_combo_box_new ();
+ gtk_label_set_mnemonic_widget (GTK_LABEL (auth_label), GTK_WIDGET (dropdown));
button = gtk_button_new_with_mnemonic (_("Ch_eck for Supported Types"));