Add some element-type annotations to gtk apis

This commit is contained in:
Matthias Clasen 2010-09-17 09:26:39 -04:00
parent 28c66ed9b0
commit 54077d61e2
4 changed files with 13 additions and 9 deletions

View File

@ -769,7 +769,8 @@ gtk_binding_entry_remove (GtkBindingSet *binding_set,
* @keyval: key value
* @modifiers: key modifier
* @signal_name: signal name to be bound
* @binding_args: list of #GtkBindingArg signal arguments
* @binding_args: (transfer none) (element-type GtkBindingArg):
* list of #GtkBindingArg signal arguments
*
* Override or install a new key binding for @keyval with @modifiers on
* @binding_set.

View File

@ -2482,7 +2482,8 @@ chain_widget_destroyed (GtkWidget *widget,
/**
* gtk_container_set_focus_chain:
* @container: a #GtkContainer
* @focusable_widgets: the new focus chain
* @focusable_widgets: (transfer none) (element-type GtkWidget):
* the new focus chain
*
* Sets a focus chain, overriding the one computed automatically by GTK+.
*

View File

@ -267,8 +267,8 @@ gtk_radio_button_get_property (GObject *object,
/**
* gtk_radio_button_set_group:
* @radio_button: a #GtkRadioButton.
* @group: an existing radio button group, such as one returned from
* gtk_radio_button_get_group().
* @group: (transfer none) (element-type GtkRadioButton): an existing radio
* button group, such as one returned from gtk_radio_button_get_group().
*
* Sets a #GtkRadioButton's group. It should be noted that this does not change
* the layout of your interface in any way, so if you are changing the group,

View File

@ -4850,9 +4850,8 @@ gtk_widget_remove_accelerator (GtkWidget *widget,
}
/**
* gtk_widget_list_accel_closures
* gtk_widget_list_accel_closures:
* @widget: widget to list accelerator closures for
* @returns: a newly allocated #GList of closures
*
* Lists the closures used by @widget for accelerator group connections
* with gtk_accel_group_connect_by_path() or gtk_accel_group_connect().
@ -4860,6 +4859,9 @@ gtk_widget_remove_accelerator (GtkWidget *widget,
* by connecting to the @GtkAccelGroup::accel-changed signal of the
* #GtkAccelGroup of a closure which can be found out with
* gtk_accel_group_from_accel_closure().
*
* Return value: (transfer container) (element-type GClosure):
* a newly allocated #GList of closures
*/
GList*
gtk_widget_list_accel_closures (GtkWidget *widget)