From 14517736a2fb97130b3dc4b7c3bb4264b4baefc0 Mon Sep 17 00:00:00 2001 From: Suman Manjunath Date: Mon, 31 Mar 2008 08:40:04 +0000 Subject: Patch from Qin Kuangyu: Fix for bug #346555 (Fixed a couple of mnemonic conflicts) svn path=/trunk/; revision=35288 --- plugins/calendar-http/ChangeLog | 7 +++++++ plugins/calendar-http/calendar-http.c | 2 +- plugins/calendar-weather/ChangeLog | 7 +++++++ plugins/calendar-weather/calendar-weather.c | 2 +- plugins/google-account-setup/ChangeLog | 7 +++++++ plugins/google-account-setup/google-source.c | 2 +- 6 files changed, 24 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/calendar-http/ChangeLog b/plugins/calendar-http/ChangeLog index 81f5f92245..76fb7d8cba 100644 --- a/plugins/calendar-http/ChangeLog +++ b/plugins/calendar-http/ChangeLog @@ -1,3 +1,10 @@ +2008-03-31 Suman Manjunath + + ** Fix for bug #346555 + + * calendar-http.c: (e_calendar_http_refresh): + Fixed a mnemonic conflict. + 2007-10-09 Matthew Barnes ** Fixes part of bug #437579 diff --git a/plugins/calendar-http/calendar-http.c b/plugins/calendar-http/calendar-http.c index 9934a8b76f..b2caa62e4f 100644 --- a/plugins/calendar-http/calendar-http.c +++ b/plugins/calendar-http/calendar-http.c @@ -270,7 +270,7 @@ e_calendar_http_refresh (EPlugin *epl, EConfigHookItemFactoryData *data) row = ((GtkTable*)parent)->nrows; - label = gtk_label_new_with_mnemonic (_("_Refresh:")); + label = gtk_label_new_with_mnemonic (_("Re_fresh:")); gtk_widget_show (label); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (parent), label, 0, 1, row, row+1, GTK_FILL, 0, 0, 0); diff --git a/plugins/calendar-weather/ChangeLog b/plugins/calendar-weather/ChangeLog index 82a7b7fd60..78f2dc28d7 100644 --- a/plugins/calendar-weather/ChangeLog +++ b/plugins/calendar-weather/ChangeLog @@ -1,3 +1,10 @@ +2008-03-31 Suman Manjunath + + ** Fix for bug #346555 + + * calendar-weather.c: (e_calendar_weather_refresh): + Fixed a mnemonic conflict. + 2007-10-26 Kjartan Maraas * calendar-weather.c: (load_locations), (treeview_clicked): diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c index a7ad776894..84614b295d 100644 --- a/plugins/calendar-weather/calendar-weather.c +++ b/plugins/calendar-weather/calendar-weather.c @@ -543,7 +543,7 @@ e_calendar_weather_refresh (EPlugin *epl, EConfigHookItemFactoryData *data) row = ((GtkTable*)parent)->nrows; - label = gtk_label_new_with_mnemonic (_("_Refresh:")); + label = gtk_label_new_with_mnemonic (_("Re_fresh:")); gtk_widget_show (label); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (parent), label, 0, 1, row, row+1, GTK_FILL, 0, 0, 0); diff --git a/plugins/google-account-setup/ChangeLog b/plugins/google-account-setup/ChangeLog index 4a8bf69491..a1019c05e7 100644 --- a/plugins/google-account-setup/ChangeLog +++ b/plugins/google-account-setup/ChangeLog @@ -1,3 +1,10 @@ +2008-03-31 Suman Manjunath + + ** Fix for bug #346555 + + * google-source.c: (plugin_google): + Fixed a mnemonic conflict. + 2008-01-25 Tor Lillqvist * Makefile.am (liborg_gnome_evolution_google_la_LIBADD): Fix typo: diff --git a/plugins/google-account-setup/google-source.c b/plugins/google-account-setup/google-source.c index 907aad3d57..fb4019c3ef 100644 --- a/plugins/google-account-setup/google-source.c +++ b/plugins/google-account-setup/google-source.c @@ -372,7 +372,7 @@ plugin_google (EPlugin *epl, gtk_label_set_mnemonic_widget (GTK_LABEL (luser), user); - GtkWidget *label = gtk_label_new_with_mnemonic (_("_Refresh:")); + GtkWidget *label = gtk_label_new_with_mnemonic (_("Re_fresh:")); gtk_widget_show (label); gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (parent), -- cgit