cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7ac5b36bc5c88f6fd2049996d932f9c27c51e8e1
commit 7ac5b36bc5c88f6fd2049996d932f9c27c51e8e1 Author: Cedric BAIL <[email protected]> Date: Fri Aug 7 14:41:56 2015 +0200 eina: forgot to fix @since for Eina_Bezier. --- src/lib/eina/eina_bezier.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/eina/eina_bezier.h b/src/lib/eina/eina_bezier.h index e15acc2..aef32e4 100644 --- a/src/lib/eina/eina_bezier.h +++ b/src/lib/eina/eina_bezier.h @@ -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); --
