effect: Fix up the class ABI

Landing the paint-box branch accidentally added two slots to the
ClutterEffectClass vtable, plus the get_paint_volume() function
pointer. This is an ABI break from 1.4.
This commit is contained in:
Emmanuele Bassi 2010-10-04 11:30:32 +01:00
parent e1a1050a39
commit d3b6dd5ec7

View File

@ -61,6 +61,7 @@ struct _ClutterEffect
* ClutterEffectClass:
* @pre_paint: virtual function
* @post_paint: virtual function
* @get_paint_volume: virtual function
*
* The #ClutterEffectClass structure contains only private data
*
@ -79,14 +80,11 @@ struct _ClutterEffectClass
ClutterPaintVolume *volume);
/*< private >*/
void (* _clutter_effect0) (void);
void (* _clutter_effect1) (void);
void (* _clutter_effect2) (void);
void (* _clutter_effect3) (void);
void (* _clutter_effect4) (void);
void (* _clutter_effect5) (void);
void (* _clutter_effect6) (void);
void (* _clutter_effect7) (void);
};
GType clutter_effect_get_type (void) G_GNUC_CONST;