2007-08-29 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-effect.c: (clutter_effect_template_set_property):
        Add missing break statement. Whoops.
This commit is contained in:
Matthew Allum 2007-08-29 22:32:47 +00:00
parent 818a667836
commit e812b0d875
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-08-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-effect.c: (clutter_effect_template_set_property):
Add missing break statement. Whoops.
2007-08-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-main.c: (_clutter_do_pick):

View File

@ -154,6 +154,7 @@ clutter_effect_template_set_property (GObject *object,
case PROP_TIMELINE:
priv->timeline = g_value_get_object (value);
g_object_ref(priv->timeline);
break;
case PROP_DO_CLONE:
clutter_effect_template_set_timeline_clone (template,
g_value_get_boolean (value));