diff options
Diffstat (limited to 'gtk/gtkhsv.c')
-rw-r--r-- | gtk/gtkhsv.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gtk/gtkhsv.c b/gtk/gtkhsv.c index 62356bc35b..427a7d5eea 100644 --- a/gtk/gtkhsv.c +++ b/gtk/gtkhsv.c @@ -1330,9 +1330,9 @@ gtk_hsv_set_color (GtkHSV *hsv, /** * gtk_hsv_get_color: * @hsv: An HSV color selector - * @h: Return value for the hue - * @s: Return value for the saturation - * @v: Return value for the value + * @h: (out): Return value for the hue + * @s: (out): Return value for the saturation + * @v: (out): Return value for the value * * Queries the current color in an HSV color selector. * Returned values will be in the [0.0, 1.0] range. @@ -1400,8 +1400,8 @@ gtk_hsv_set_metrics (GtkHSV *hsv, /** * gtk_hsv_get_metrics: * @hsv: An HSV color selector - * @size: Return value for the diameter of the hue ring - * @ring_width: Return value for the width of the hue ring + * @size: (out): Return value for the diameter of the hue ring + * @ring_width: (out): Return value for the width of the hue ring * * Queries the size and ring width of an HSV color selector. * @@ -1457,9 +1457,9 @@ gtk_hsv_is_adjusting (GtkHSV *hsv) * @h: Hue * @s: Saturation * @v: Value - * @r: Return value for the red component - * @g: Return value for the green component - * @b: Return value for the blue component + * @r: (out): Return value for the red component + * @g: (out): Return value for the green component + * @b: (out): Return value for the blue component * * Converts a color from HSV space to RGB. * Input values must be in the [0.0, 1.0] range; @@ -1496,9 +1496,9 @@ gtk_hsv_to_rgb (gdouble h, * @r: Red * @g: Green * @b: Blue - * @h: Return value for the hue component - * @s: Return value for the saturation component - * @v: Return value for the value component + * @h: (out): Return value for the hue component + * @s: (out): Return value for the saturation component + * @v: (out): Return value for the value component * * Converts a color from RGB space to HSV. * Input values must be in the [0.0, 1.0] range; |