Fix the definition of clutter_actor_set_scale to match the declaration

Trivial change to declare the parameter as gdouble instead of double
so that it matches the header.
This commit is contained in:
Neil Roberts 2008-12-12 17:38:53 +00:00
parent 4973b684a6
commit cd1992181c

View File

@ -4872,8 +4872,8 @@ clutter_actor_set_scalex (ClutterActor *self,
*/
void
clutter_actor_set_scale (ClutterActor *self,
double scale_x,
double scale_y)
gdouble scale_x,
gdouble scale_y)
{
g_return_if_fail (CLUTTER_IS_ACTOR (self));