diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-03-31 16:40:04 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-03-31 16:40:04 +0800 |
commit | 14517736a2fb97130b3dc4b7c3bb4264b4baefc0 (patch) | |
tree | 8aa3232a5c8b2a7f7c97ce754f36f48dd488b8cc /plugins | |
parent | a88fceee7c788e7153c796eff23537121c2cf8e3 (diff) | |
download | gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.gz gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.bz2 gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.lz gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.xz gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.zst gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.zip |
Patch from Qin Kuangyu: Fix for bug #346555 (Fixed a couple of mnemonic conflicts)
svn path=/trunk/; revision=35288
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/calendar-http/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/calendar-http/calendar-http.c | 2 | ||||
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 2 | ||||
-rw-r--r-- | plugins/google-account-setup/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/google-account-setup/google-source.c | 2 |
6 files changed, 24 insertions, 3 deletions
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 <msuman@novell.com> + + ** Fix for bug #346555 + + * calendar-http.c: (e_calendar_http_refresh): + Fixed a mnemonic conflict. + 2007-10-09 Matthew Barnes <mbarnes@redhat.com> ** 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 <msuman@novell.com> + + ** Fix for bug #346555 + + * calendar-weather.c: (e_calendar_weather_refresh): + Fixed a mnemonic conflict. + 2007-10-26 Kjartan Maraas <kmaraas@gnome.org> * 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 <msuman@novell.com> + + ** Fix for bug #346555 + + * google-source.c: (plugin_google): + Fixed a mnemonic conflict. + 2008-01-25 Tor Lillqvist <tml@novell.com> * 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), |