Fix annotation for bind_model()

The (optional) annotation should only be used for (out) arguments; in
arguments that can be NULL should use the (nullable) annotation.
This commit is contained in:
Emmanuele Bassi 2015-12-09 12:44:20 +00:00
parent a166cc9f35
commit b47e1616eb

View File

@ -20834,7 +20834,7 @@ clutter_actor_child_model__items_changed (GListModel *model,
/** /**
* clutter_actor_bind_model: * clutter_actor_bind_model:
* @self: a #ClutterActor * @self: a #ClutterActor
* @model: (optional): a #GListModel * @model: (nullable): a #GListModel
* @create_child_func: a function that creates #ClutterActor instances * @create_child_func: a function that creates #ClutterActor instances
* from the contents of the @model * from the contents of the @model
* @user_data: user data passed to @create_child_func * @user_data: user data passed to @create_child_func