From d3b6dd5ec7dda1557b2f5e5f14d3a73c02781683 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 4 Oct 2010 11:30:32 +0100 Subject: [PATCH] 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. --- clutter/clutter-effect.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/clutter/clutter-effect.h b/clutter/clutter-effect.h index c69cdc9d5..c6a791e97 100644 --- a/clutter/clutter-effect.h +++ b/clutter/clutter-effect.h @@ -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;