aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/calendar-http
diff options
context:
space:
mode:
authorSuman Manjunath <msuman@src.gnome.org>2008-03-31 16:40:04 +0800
committerSuman Manjunath <msuman@src.gnome.org>2008-03-31 16:40:04 +0800
commit14517736a2fb97130b3dc4b7c3bb4264b4baefc0 (patch)
tree8aa3232a5c8b2a7f7c97ce754f36f48dd488b8cc /plugins/calendar-http
parenta88fceee7c788e7153c796eff23537121c2cf8e3 (diff)
downloadgsoc2013-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/calendar-http')
-rw-r--r--plugins/calendar-http/ChangeLog7
-rw-r--r--plugins/calendar-http/calendar-http.c2
2 files changed, 8 insertions, 1 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);