2006-08-15 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-behaviour.h:
        Behaviours shouldn't subclass timelines.
This commit is contained in:
Matthew Allum 2006-08-15 20:38:25 +00:00
parent 2c41d38fed
commit 149a4bac0c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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> 2006-08-15 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-behaviour.c: * clutter/clutter-behaviour.c:

View File

@ -33,13 +33,13 @@ typedef struct _ClutterBehaviourClass ClutterBehaviourClass;
struct _ClutterBehaviour struct _ClutterBehaviour
{ {
ClutterTimeline parent; GObject parent;
ClutterBehaviourPrivate *priv; ClutterBehaviourPrivate *priv;
}; };
struct _ClutterBehaviourClass struct _ClutterBehaviourClass
{ {
ClutterTimelineClass parent_class; GObjectClass parent_class;
}; };
GType clutter_behaviour_get_type (void); GType clutter_behaviour_get_type (void);