1
0
Fork 0

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>
* clutter/clutter-behaviour.c:

View 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);