aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoby Wang <Boby.Wang@sun.com>2005-12-20 17:10:55 +0800
committerJedy Jedy Wang <jedywang@src.gnome.org>2005-12-20 17:10:55 +0800
commit99a74fa6899d4f8062d35bcac01d84c97cf330eb (patch)
tree039018835f8cbe349a77c8d8fbeab190ad4955f9
parent0d7c69dd06f119e279b31210b438b25bbb1b3eba (diff)
downloadgsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar.gz
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar.bz2
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar.lz
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar.xz
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.tar.zst
gsoc2013-evolution-99a74fa6899d4f8062d35bcac01d84c97cf330eb.zip
** See bug 324319 Add the accessible name of arrow button, and the
2005-12-20 Boby Wang <Boby.Wang@sun.com> ** See bug 324319 * em-format-html-display.c: (efhd_add_bar): Add the accessible name of arrow button, and the attachment bar can be opened by gok. svn path=/trunk/; revision=30895
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/em-format-html-display.c1
2 files changed, 9 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3d4a9e0774..0bad13b534 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-20 Boby Wang <Boby.Wang@sun.com>
+
+ ** See bug 324319
+ * em-format-html-display.c: (efhd_add_bar):
+ Add the accessible name of arrow button, and the attachment
+ bar can be opened by gok.
+
2005-12-20 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 234008
@@ -98,6 +105,7 @@
* em-folder-view.c: (emfv_setting_notify):
Respond to the change of /apps/evolution/mail/display/show_deleted and thread_list in gconf.
+>>>>>>> 1.3748
2005-12-12 Karsten Bräckelmann <guenther@rudersport.de>
* em-folder-view.c: Mail Context Menu re-ordered correctly,
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index e485631ee4..8bddc98a5e 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -1977,6 +1977,7 @@ efhd_add_bar(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject *pobjec
gtk_box_pack_start ((GtkBox *)hbox3, priv->forward, FALSE, FALSE, 0);
gtk_box_pack_start ((GtkBox *)hbox3, priv->down, FALSE, FALSE, 0);
priv->arrow = (GtkWidget *)gtk_tool_button_new(hbox3, NULL);
+ atk_object_set_name (gtk_widget_get_accessible (priv->arrow), _("Toggle Attachment Bar"));
priv->label = gtk_label_new(_("No Attachment"));
save = gtk_button_new();