2006-08-15 Matthew Allum <mallum@openedhand.com>
authorMatthew Allum <mallum@openedhand.com>
Tue, 15 Aug 2006 20:38:25 +0000 (20:38 +0000)
committerMatthew Allum <mallum@openedhand.com>
Tue, 15 Aug 2006 20:38:25 +0000 (20:38 +0000)
        * clutter/clutter-behaviour.h:
        Behaviours shouldn't subclass timelines.

ChangeLog
clutter/clutter-behaviour.h

index cb7b923..6bb25b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-08-15  Matthew Allum  <mallum@openedhand.com>
 
+       * clutter/clutter-behaviour.h:
+       Behaviours shouldn't subclass timelines.
+
+2006-08-15  Matthew Allum  <mallum@openedhand.com>
+
        * clutter/clutter-behaviour.c:
        * clutter/clutter-behaviour.h:
        * clutter/clutter-behaviours.c:
index bb398bd..8472275 100644 (file)
@@ -33,13 +33,13 @@ typedef struct _ClutterBehaviourClass  ClutterBehaviourClass;
  
 struct _ClutterBehaviour
 {
-  ClutterTimeline     parent;
+  GObject                 parent;
   ClutterBehaviourPrivate *priv;
 };
 
 struct _ClutterBehaviourClass
 {
-  ClutterTimelineClass         parent_class;
+  GObjectClass parent_class;
 };
 
 GType clutter_behaviour_get_type (void);