From: Emmanuele Bassi Date: Wed, 3 Mar 2010 10:47:42 +0000 (+0000) Subject: box: Fix allow-none annotation X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2f444ccbe4255e4386a9df40415a04637a296e2;p=profile%2Fivi%2Fclutter.git box: Fix allow-none annotation The syntax for allowing NULL is "allow-none", not "allow none". --- diff --git a/clutter/clutter-box.c b/clutter/clutter-box.c index b98431a..0f4267a 100644 --- a/clutter/clutter-box.c +++ b/clutter/clutter-box.c @@ -798,7 +798,7 @@ clutter_box_pack (ClutterBox *box, * clutter_box_pack_after: * @box: a #ClutterBox * @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 * @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: * @box: a #ClutterBox * @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 * @Varargs: a list of property name and value pairs, terminated by %NULL *