This patch (related with string) had been committed into CVS Head



hi,

This patch is against evolution/widget/misc/e-search-bar.c

Please see the enclosure.


yours,
Mengjie



-- 
Mengjie Yu <meng-jie yu sun com>
meng-jie yu sun com
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/ChangeLog,v
retrieving revision 1.346
diff -u -p -r1.346 ChangeLog
--- ChangeLog	20 Jan 2005 07:30:01 -0000	1.346
+++ ChangeLog	24 Jan 2005 10:12:25 -0000
@@ -1,3 +1,9 @@
+2005-01-24  Mengjie Yu  <meng-jie yu sun com>
+
+	* e-search-bar.c: (set_option):
+	add a11y name for the option menu.
+
+
 2005-01-20  Not Zed  <NotZed Ximian com>
 
 	** See bug #64964.
Index: e-search-bar.c
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/e-search-bar.c,v
retrieving revision 1.82
diff -u -p -r1.82 e-search-bar.c
--- e-search-bar.c	20 Jan 2005 08:03:24 -0000	1.82
+++ e-search-bar.c	24 Jan 2005 10:12:27 -0000
@@ -636,9 +636,14 @@ set_option (ESearchBar *esb, ESearchBarI
 	if (esb->option) {
 		gtk_widget_destroy (esb->option_menu);
 	} else {
+		AtkObject *a11y;
+
 		esb->option = gtk_option_menu_new ();
 		gtk_widget_show (esb->option);
 		gtk_box_pack_start (GTK_BOX (esb), esb->option, FALSE, FALSE, 0);
+		a11y = gtk_widget_get_accessible (esb->option);
+		atk_object_set_name (a11y, _("Search Type"));
+
 	}
 
 	esb->option_menu = menu = gtk_menu_new ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]