From 7f2ef2f1e014201bb5d3614bc857e6122fbfe08f Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Fri, 13 Mar 2009 15:43:19 +0000 Subject: [PATCH] [cogl-path] Minor fix to gtk-doc Fix the parameters in cogl_path_curve_to and cogl_path_rel_curve_to to match the actual names otherwise they won't appear correctly in the docs. --- clutter/cogl/cogl-path.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clutter/cogl/cogl-path.h b/clutter/cogl/cogl-path.h index cfd5476a0..47c46d0aa 100644 --- a/clutter/cogl/cogl-path.h +++ b/clutter/cogl/cogl-path.h @@ -189,8 +189,8 @@ void cogl_path_arc (float center_x, * @y_1: Y coordinate of the second bezier control point * @x_2: X coordinate of the third bezier control point * @y_2: Y coordinate of the third bezier control point - * @x3: X coordinate of the fourth bezier control point - * @y3: Y coordinate of the fourth bezier control point + * @x_3: X coordinate of the fourth bezier control point + * @y_3: Y coordinate of the fourth bezier control point * * Adds a cubic bezier curve segment to the current path with the given * second, third and fourth control points and using current pen location @@ -209,8 +209,8 @@ void cogl_path_curve_to (float x_1, * @y_1: Y coordinate of the second bezier control point * @x_2: X coordinate of the third bezier control point * @y_2: Y coordinate of the third bezier control point - * @x3: X coordinate of the fourth bezier control point - * @y3: Y coordinate of the fourth bezier control point + * @x_3: X coordinate of the fourth bezier control point + * @y_3: Y coordinate of the fourth bezier control point * * Adds a cubic bezier curve segment to the current path with the given * second, third and fourth control points and using current pen location