[timeline] Check the fps property range in the ctor

The clutter_timeline_new() constructor is not checking the full
range of the passed :fps property. The ParamSpec of the property
and the setter method perform this check, so the ctor should as
well.
This commit is contained in:
Emmanuele Bassi 2009-01-27 10:35:50 +00:00
parent f753847851
commit 43bd4e5d3f

View File

@ -1258,7 +1258,7 @@ clutter_timeline_new (guint n_frames,
guint fps)
{
g_return_val_if_fail (n_frames > 0, NULL);
g_return_val_if_fail (fps > 0, NULL);
g_return_val_if_fail (fps > 0 && fps <= 1000, NULL);
return g_object_new (CLUTTER_TYPE_TIMELINE,
"fps", fps,