Use the right argument naming for alpha functions

The name of the argument in the header must match the name in the
function implementation, for gtk-doc to work properly.
This commit is contained in:
Emmanuele Bassi 2007-07-04 12:29:44 +00:00
parent d2e244beb4
commit 82860b5d5a
2 changed files with 4 additions and 4 deletions

View File

@ -743,7 +743,7 @@ clutter_square_func (ClutterAlpha *alpha,
*/ */
guint32 guint32
clutter_smoothstep_inc_func (ClutterAlpha *alpha, clutter_smoothstep_inc_func (ClutterAlpha *alpha,
gpointer *dummy) gpointer dummy)
{ {
ClutterTimeline *timeline; ClutterTimeline *timeline;
gint frame; gint frame;
@ -790,7 +790,7 @@ clutter_smoothstep_inc_func (ClutterAlpha *alpha,
*/ */
guint32 guint32
clutter_smoothstep_dec_func (ClutterAlpha *alpha, clutter_smoothstep_dec_func (ClutterAlpha *alpha,
gpointer *dummy) gpointer dummy)
{ {
return CLUTTER_ALPHA_MAX_ALPHA - clutter_smoothstep_inc_func (alpha, dummy); return CLUTTER_ALPHA_MAX_ALPHA - clutter_smoothstep_inc_func (alpha, dummy);
} }

View File

@ -134,9 +134,9 @@ guint32 clutter_sine_half_func (ClutterAlpha *alpha,
guint32 clutter_square_func (ClutterAlpha *alpha, guint32 clutter_square_func (ClutterAlpha *alpha,
gpointer dummy); gpointer dummy);
guint32 clutter_smoothstep_inc_func (ClutterAlpha *alpha, guint32 clutter_smoothstep_inc_func (ClutterAlpha *alpha,
gpointer *data); gpointer dummy);
guint32 clutter_smoothstep_dec_func (ClutterAlpha *alpha, guint32 clutter_smoothstep_dec_func (ClutterAlpha *alpha,
gpointer *data); gpointer dummy);
guint32 clutter_exp_inc_func (ClutterAlpha *alpha, guint32 clutter_exp_inc_func (ClutterAlpha *alpha,
gpointer dummy); gpointer dummy);
guint32 clutter_exp_dec_func (ClutterAlpha *alpha, guint32 clutter_exp_dec_func (ClutterAlpha *alpha,