mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 04:22:05 +00:00
interval: Allow passing NULL values to the constructor
Given that we can create a ClutterInterval without an initial and final values using g_object_new(), it stands to reason that we ought to be able to create an instance when passing NULL GValue pointers to the new_with_values() constructor as well.
This commit is contained in:
parent
bf12e23199
commit
d24eccd026
@ -567,8 +567,8 @@ out:
|
|||||||
/**
|
/**
|
||||||
* clutter_interval_new_with_values:
|
* clutter_interval_new_with_values:
|
||||||
* @gtype: the type of the values in the interval
|
* @gtype: the type of the values in the interval
|
||||||
* @initial: a #GValue holding the initial value of the interval
|
* @initial: (allow-none): a #GValue holding the initial value of the interval
|
||||||
* @final: a #GValue holding the final value of the interval
|
* @final: (allow-none): a #GValue holding the final value of the interval
|
||||||
*
|
*
|
||||||
* Creates a new #ClutterInterval of type @gtype, between @initial
|
* Creates a new #ClutterInterval of type @gtype, between @initial
|
||||||
* and @final.
|
* and @final.
|
||||||
@ -587,14 +587,15 @@ clutter_interval_new_with_values (GType gtype,
|
|||||||
ClutterInterval *retval;
|
ClutterInterval *retval;
|
||||||
|
|
||||||
g_return_val_if_fail (gtype != G_TYPE_INVALID, NULL);
|
g_return_val_if_fail (gtype != G_TYPE_INVALID, NULL);
|
||||||
g_return_val_if_fail (initial != NULL, NULL);
|
g_return_val_if_fail (initial == NULL || G_VALUE_TYPE (initial) == gtype, NULL);
|
||||||
g_return_val_if_fail (final != NULL, NULL);
|
g_return_val_if_fail (final == NULL || G_VALUE_TYPE (final) == gtype, NULL);
|
||||||
g_return_val_if_fail (G_VALUE_TYPE (initial) == gtype, NULL);
|
|
||||||
g_return_val_if_fail (G_VALUE_TYPE (final) == gtype, NULL);
|
|
||||||
|
|
||||||
retval = g_object_new (CLUTTER_TYPE_INTERVAL, "value-type", gtype, NULL);
|
retval = g_object_new (CLUTTER_TYPE_INTERVAL, "value-type", gtype, NULL);
|
||||||
|
|
||||||
|
if (initial != NULL)
|
||||||
clutter_interval_set_initial_value (retval, initial);
|
clutter_interval_set_initial_value (retval, initial);
|
||||||
|
|
||||||
|
if (final != NULL)
|
||||||
clutter_interval_set_final_value (retval, final);
|
clutter_interval_set_final_value (retval, final);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
|
Loading…
Reference in New Issue
Block a user