mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
layout: Add padding to LayoutMeta
Add some padding to the LayoutMeta and LayoutMetaClass structures.
This commit is contained in:
parent
02398c0cf1
commit
0270313121
@ -68,12 +68,28 @@ struct _ClutterLayoutMeta
|
||||
|
||||
/*< private >*/
|
||||
/* padding */
|
||||
gpointer dummy;
|
||||
gint32 dummy0;
|
||||
gpointer dummy1;
|
||||
};
|
||||
|
||||
/**
|
||||
* ClutterLayoutMetaClass:
|
||||
*
|
||||
* The #ClutterLayoutMetaClass contains only private data and
|
||||
* should never be accessed directly
|
||||
*
|
||||
* Since: 1.2
|
||||
*/
|
||||
struct _ClutterLayoutMetaClass
|
||||
{
|
||||
/*< private >*/
|
||||
ClutterChildMetaClass parent_class;
|
||||
|
||||
/* padding, for expansion */
|
||||
void (*_clutter_padding1) (void);
|
||||
void (*_clutter_padding2) (void);
|
||||
void (*_clutter_padding3) (void);
|
||||
void (*_clutter_padding4) (void);
|
||||
};
|
||||
|
||||
GType clutter_layout_meta_get_type (void) G_GNUC_CONST;
|
||||
|
Loading…
Reference in New Issue
Block a user