Properly document gtk_container_set_focus_child(). (#521739, Andrew Cowie)

2008-03-17  Emmanuele Bassi  <ebassi@gnome.org>

	* gtk/gtkcontainer.c: Properly document
	gtk_container_set_focus_child(). (#521739, Andrew Cowie)

svn path=/trunk/; revision=19893
This commit is contained in:
Emmanuele Bassi 2008-03-17 13:57:00 +00:00 committed by Emmanuele Bassi
parent e745e41ee7
commit 519ba608ee
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-03-17 Emmanuele Bassi <ebassi@gnome.org>
* gtk/gtkcontainer.c: Properly document
gtk_container_set_focus_child(). (#521739, Andrew Cowie)
2008-03-16 Alberto Ruiz <aruiz@gnome.org>
* modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: more descriptive

View File

@ -1537,6 +1537,17 @@ gtk_container_foreach_full (GtkContainer *container,
notify (callback_data);
}
/**
* gtk_container_set_focus_child:
* @container: a #GtkContainer
* @widget: a #GtkWidget, or %NULL
*
* Sets, or unsets if @widget is %NULL, the focused child of @container.
*
* This function emits the GtkContainer::set_focus_child signal of
* @container. Implementations of #GtkContainer can override the
* default behaviour by overriding the class closure of this signal.
*/
void
gtk_container_set_focus_child (GtkContainer *container,
GtkWidget *widget)