introspection: Add missing (out) annotations for get_color()
authorBastian Winkler <buz@netbuz.org>
Fri, 14 Jan 2011 13:53:05 +0000 (14:53 +0100)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Mon, 17 Jan 2011 17:31:59 +0000 (17:31 +0000)
Some actors are missing the (out) annotations for the get_color()
methods.

http://bugzilla.clutter-project.org/show_bug.cgi?id=2518

clutter/clutter-rectangle.c
clutter/clutter-stage.c
clutter/clutter-text.c

index 1bcab56..110d5f8 100644 (file)
@@ -356,7 +356,7 @@ clutter_rectangle_new_with_color (const ClutterColor *color)
 /**
  * clutter_rectangle_get_color:
  * @rectangle: a #ClutterRectangle
- * @color: return location for a #ClutterColor
+ * @color: (out): return location for a #ClutterColor
  *
  * Retrieves the color of @rectangle.
  */
@@ -476,7 +476,7 @@ clutter_rectangle_set_border_width (ClutterRectangle *rectangle,
 /**
  * clutter_rectangle_get_border_color:
  * @rectangle: a #ClutterRectangle
- * @color: return location for a #ClutterColor
+ * @color: (out): return location for a #ClutterColor
  *
  * Gets the color of the border used by @rectangle and places
  * it into @color.
index d27c033..21dc982 100644 (file)
@@ -1690,7 +1690,7 @@ clutter_stage_set_color (ClutterStage       *stage,
 /**
  * clutter_stage_get_color:
  * @stage: A #ClutterStage
- * @color: return location for a #ClutterColor
+ * @color: (out): return location for a #ClutterColor
  *
  * Retrieves the stage color.
  */
index 2fff78a..445aec0 100644 (file)
@@ -4122,7 +4122,7 @@ clutter_text_set_color (ClutterText        *self,
 /**
  * clutter_text_get_color:
  * @self: a #ClutterText
- * @color: return location for a #ClutterColor
+ * @color: (out): return location for a #ClutterColor
  *
  * Retrieves the text color as set by clutter_text_set_color().
  *