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/calendar-weather | |
parent | a88fceee7c788e7153c796eff23537121c2cf8e3 (diff) | |
download | gsoc2013-evolution-14517736a2fb97130b3dc4b7c3bb4264b4baefc0.tar.gz 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/calendar-weather')
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 2 |
2 files changed, 8 insertions, 1 deletions
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); |