shouldn't the doc be updated when signatures of exported functions are
modified ?

Vincent



On Wed, Mar 7, 2012 at 9:13 AM, Enlightenment SVN
<no-re...@enlightenment.org> wrote:
> Log:
> warn--
>
>
>
> Author:       raster
> Date:         2012-03-07 00:13:06 -0800 (Wed, 07 Mar 2012)
> New Revision: 68892
> Trac:         http://trac.enlightenment.org/e/changeset/68892
>
> Modified:
>  trunk/elementary/src/lib/elm_gesture_layer.c 
> trunk/elementary/src/lib/elm_spinner.c trunk/elementary/src/lib/elm_spinner.h
>
> Modified: trunk/elementary/src/lib/elm_gesture_layer.c
> ===================================================================
> --- trunk/elementary/src/lib/elm_gesture_layer.c        2012-03-07 08:11:00 
> UTC (rev 68891)
> +++ trunk/elementary/src/lib/elm_gesture_layer.c        2012-03-07 08:13:06 
> UTC (rev 68892)
> @@ -1570,13 +1570,14 @@
>  * @ingroup Elm_Gesture_Layer
>  */
>  static void
> -_set_momentum(Elm_Gesture_Momentum_Info *momentum, Evas_Coord x1, Evas_Coord 
> y1,
> -      Evas_Coord x2, Evas_Coord y2, unsigned int t1x, unsigned int t1y,
> -      unsigned int t2)
> +_set_momentum(Elm_Gesture_Momentum_Info *momentum,
> +              Evas_Coord xx1, Evas_Coord yy1,
> +              Evas_Coord xx2, Evas_Coord yy2,
> +              unsigned int t1x, unsigned int t1y, unsigned int t2)
>  {
>    Evas_Coord velx = 0, vely = 0, vel;
> -   Evas_Coord dx = x2 - x1;
> -   Evas_Coord dy = y2 - y1;
> +   Evas_Coord dx = xx2 - xx1;
> +   Evas_Coord dy = yy2 - yy1;
>    int dtx = t2 - t1x;
>    int dty = t2 - t1y;
>    if (dtx > 0)
>
> Modified: trunk/elementary/src/lib/elm_spinner.c
> ===================================================================
> --- trunk/elementary/src/lib/elm_spinner.c      2012-03-07 08:11:00 UTC (rev 
> 68891)
> +++ trunk/elementary/src/lib/elm_spinner.c      2012-03-07 08:13:06 UTC (rev 
> 68892)
> @@ -804,12 +804,12 @@
>  }
>
>  EAPI void
> -elm_spinner_round_set(Evas_Object *obj, int round)
> +elm_spinner_round_set(Evas_Object *obj, int rnd)
>  {
>    ELM_CHECK_WIDTYPE(obj, widtype);
>    Widget_Data *wd = elm_widget_data_get(obj);
>    if (!wd) return;
> -   wd->round = round;
> +   wd->round = rnd;
>  }
>
>  EAPI int
>
> Modified: trunk/elementary/src/lib/elm_spinner.h
> ===================================================================
> --- trunk/elementary/src/lib/elm_spinner.h      2012-03-07 08:11:00 UTC (rev 
> 68891)
> +++ trunk/elementary/src/lib/elm_spinner.h      2012-03-07 08:13:06 UTC (rev 
> 68892)
> @@ -404,7 +404,7 @@
>  *
>  * @ingroup Spinner
>  */
> -EAPI void elm_spinner_round_set(Evas_Object *obj, int round);
> +EAPI void elm_spinner_round_set(Evas_Object *obj, int rnd);
>
>  /**
>  * Get the round value for rounding
>
>
> ------------------------------------------------------------------------------
> Virtualization & Cloud Management Using Capacity Planning
> Cloud computing makes use of virtualization - but cloud computing
> also focuses on allowing computing to be delivered as a service.
> http://www.accelacomm.com/jaw/sfnl/114/51521223/
> _______________________________________________
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to