eina: forgot to fix @since for Eina_Bezier.
authorCedric BAIL <cedric@osg.samsung.com>
Fri, 7 Aug 2015 12:41:56 +0000 (14:41 +0200)
committerCedric BAIL <cedric@osg.samsung.com>
Fri, 7 Aug 2015 12:41:56 +0000 (14:41 +0200)
src/lib/eina/eina_bezier.h

index e15acc2..aef32e4 100644 (file)
@@ -62,7 +62,7 @@ struct _Eina_Bezier
  * @param end_y y coordinate of end point.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI void eina_bezier_values_set(Eina_Bezier *b, double start_x, double start_y, double ctrl_start_x, double ctrl_start_y, double ctrl_end_x, double ctrl_end_y, double end_x, double end_y) EINA_ARG_NONNULL(1);
 
@@ -81,7 +81,7 @@ EAPI void eina_bezier_values_set(Eina_Bezier *b, double start_x, double start_y,
  * @param end_y y coordinate of end point.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI void eina_bezier_values_get(const Eina_Bezier *b, double *start_x, double *start_y, double *ctrl_start_x, double *ctrl_start_y, double *ctrl_end_x, double *ctrl_end_y, double *end_x, double *end_y) EINA_ARG_NONNULL(1);
 
@@ -92,7 +92,7 @@ EAPI void eina_bezier_values_get(const Eina_Bezier *b, double *start_x, double *
  * @param b The floating point bezier.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI double eina_bezier_length_get(const Eina_Bezier *b) EINA_ARG_NONNULL(1);
 
@@ -104,7 +104,7 @@ EAPI double eina_bezier_length_get(const Eina_Bezier *b) EINA_ARG_NONNULL(1);
  * @param len The given length.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI double eina_bezier_t_at(const Eina_Bezier *b, double len) EINA_ARG_NONNULL(1);
 
@@ -116,7 +116,7 @@ EAPI double eina_bezier_t_at(const Eina_Bezier *b, double len) EINA_ARG_NONNULL(
  * @param t The floating point position.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI void eina_bezier_point_at(const Eina_Bezier *b, double t, double *px, double *py) EINA_ARG_NONNULL(1);
 
@@ -128,7 +128,7 @@ EAPI void eina_bezier_point_at(const Eina_Bezier *b, double t, double *px, doubl
  * @param len The given length.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI double eina_bezier_angle_at(const Eina_Bezier *b, double t) EINA_ARG_NONNULL(1);
 
@@ -139,7 +139,7 @@ EAPI double eina_bezier_angle_at(const Eina_Bezier *b, double t) EINA_ARG_NONNUL
  * @param len The given length.
  *
  * @p b. No check is done on @p b.
- *
+ * @since 1.16
  */
 EAPI void eina_bezier_split_at_length(const Eina_Bezier *b, double len, Eina_Bezier *left, Eina_Bezier *right) EINA_ARG_NONNULL(1);