Home | History | Annotate | Download | only in patches
      1 --- control-center-2.16.1/libsounds/sound-view.c	Mon Nov 13 14:57:50 2006
      2 +++ control-center-2.16.1-NEW/libsounds/sound-view.c	Mon Nov 13 14:58:19 2006
      3 @@ -276,6 +276,7 @@
      4  	GtkWidget *label;
      5  	GtkWidget *combo;
      6  	GtkWidget *play_button;
      7 +	AtkObject *play_button_a11y_obj;
      8  	gint index;
      9  	ComboBoxEntryInfo *info;
     10  	gchar *temp;
     11 @@ -334,6 +335,8 @@
     12  		GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 3);
     13  
     14  	play_button = gtk_button_new ();
     15 +	play_button_a11y_obj = gtk_widget_get_accessible (GTK_BUTTON (play_button));
     16 +	atk_object_set_name (play_button_a11y_obj, "Preview Sound");
     17  	gtk_container_add (GTK_CONTAINER (play_button),
     18  			   gtk_image_new_from_stock (GTK_STOCK_MEDIA_PLAY,  GTK_ICON_SIZE_SMALL_TOOLBAR));
     19  	g_signal_connect (G_OBJECT(play_button), "clicked", (GCallback) play_preview_cb, info);
     20