box: Fix allow-none annotation

The syntax for allowing NULL is "allow-none", not "allow none".
This commit is contained in:
Emmanuele Bassi 2010-03-03 10:47:42 +00:00
parent fa6070ec1a
commit a2f444ccbe

View File

@ -798,7 +798,7 @@ clutter_box_pack (ClutterBox *box,
* clutter_box_pack_after: * clutter_box_pack_after:
* @box: a #ClutterBox * @box: a #ClutterBox
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @sibling: (allow none): a #ClutterActor or %NULL * @sibling: (allow-none): a #ClutterActor or %NULL
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @Varargs: a list of property name and value pairs, terminated by %NULL
* *
@ -842,7 +842,7 @@ clutter_box_pack_after (ClutterBox *box,
* clutter_box_pack_before: * clutter_box_pack_before:
* @box: a #ClutterBox * @box: a #ClutterBox
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @sibling: (allow none): a #ClutterActor or %NULL * @sibling: (allow-none): a #ClutterActor or %NULL
* @first_property: the name of the first property to set, or %NULL * @first_property: the name of the first property to set, or %NULL
* @Varargs: a list of property name and value pairs, terminated by %NULL * @Varargs: a list of property name and value pairs, terminated by %NULL
* *