Fix an empty block

Remove a stray ';' that prevented the get_bounds() method of the
ClutterBehaviourRotate to correctly return the start angle value.
This commit is contained in:
Emmanuele Bassi 2008-12-23 20:55:35 +00:00
parent affd915b84
commit c9cdf1ef0a

View File

@ -619,7 +619,7 @@ clutter_behaviour_rotate_get_boundsx (ClutterBehaviourRotate *rotate,
priv = rotate->priv;
if (angle_start);
if (angle_start)
*angle_start = priv->angle_start;
if (angle_end)