From 4f5a5f38f7068d4ec0dca9967f304a39901e8fec Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 20 May 2009 16:06:09 +0100 Subject: [PATCH] Add more padding in Model and ModelIter classes ClutterModel and ClutterModelIter have 4 padding slots, but if they have to survive the 1.x API cycle they will need at least twice that amount. --- clutter/clutter-model.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/clutter/clutter-model.h b/clutter/clutter-model.h index bae1faf3b..0a9e56d2a 100644 --- a/clutter/clutter-model.h +++ b/clutter/clutter-model.h @@ -177,11 +177,15 @@ struct _ClutterModelClass void (* filter_changed) (ClutterModel *model); /*< private >*/ - /* padding for future */ + /* padding for future expansion */ void (*_clutter_model_1) (void); void (*_clutter_model_2) (void); void (*_clutter_model_3) (void); void (*_clutter_model_4) (void); + void (*_clutter_model_5) (void); + void (*_clutter_model_6) (void); + void (*_clutter_model_7) (void); + void (*_clutter_model_8) (void); }; GType clutter_model_get_type (void) G_GNUC_CONST; @@ -334,11 +338,15 @@ struct _ClutterModelIterClass ClutterModelIter *(* copy) (ClutterModelIter *iter); /*< private >*/ - /* padding for future */ + /* padding for future expansion */ void (*_clutter_model_iter_1) (void); void (*_clutter_model_iter_2) (void); void (*_clutter_model_iter_3) (void); void (*_clutter_model_iter_4) (void); + void (*_clutter_model_iter_5) (void); + void (*_clutter_model_iter_6) (void); + void (*_clutter_model_iter_7) (void); + void (*_clutter_model_iter_8) (void); }; GType clutter_model_iter_get_type (void) G_GNUC_CONST;