2007-08-29 Matthew Allum <mallum@openedhand.com>
authorMatthew Allum <mallum@openedhand.com>
Wed, 29 Aug 2007 22:32:47 +0000 (22:32 +0000)
committerMatthew Allum <mallum@openedhand.com>
Wed, 29 Aug 2007 22:32:47 +0000 (22:32 +0000)
        * clutter/clutter-effect.c: (clutter_effect_template_set_property):
        Add missing break statement. Whoops.

ChangeLog
clutter/clutter-effect.c

index d8444cd..d1512af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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):
        Call glFinish before reading pixels
        * clutter/eglx/clutter-stage-egl.c: (clutter_stage_egl_realize):
index 76e893d..67afb16 100644 (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));