Fix annotation

This commit is contained in:
William Jon McCann 2013-02-14 14:10:16 -05:00
parent 7b5e26b11b
commit b9c7372e1d
2 changed files with 18 additions and 1 deletions

View file

@ -3268,7 +3268,7 @@ egg_flow_box_select_child (EggFlowBox *box,
/**
* egg_flow_box_selected_foreach:
* @flow_box: An #EggFlowBox.
* @box: An #EggFlowBox.
* @func: (scope call): The function to call for each selected child.
* @data: User data to pass to the function.
*

View file

@ -474,6 +474,14 @@ egg_list_box_class_init (EggListBoxClass *klass)
"toggle-cursor-child", 0, NULL);
}
/**
* egg_list_box_get_selected_child:
* @self: An #EggListBox.
*
* Gets the selected child.
*
* Return value: (transfer none): The selected #GtkWidget.
**/
GtkWidget *
egg_list_box_get_selected_child (EggListBox *list_box)
{
@ -487,6 +495,15 @@ egg_list_box_get_selected_child (EggListBox *list_box)
return NULL;
}
/**
* egg_list_box_get_child_at_y:
* @self: An #EggListBox.
* @y: position
*
* Gets the child at the position.
*
* Return value: (transfer none): The child #GtkWidget.
**/
GtkWidget *
egg_list_box_get_child_at_y (EggListBox *list_box, gint y)
{