summaryrefslogtreecommitdiff
path: root/gtk/gtksizegroup.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-07-12 21:06:14 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:50 +0200
commitd5c3fb5231cf1819d97335b3373a7c6207340192 (patch)
tree5e7bcb20ea4e77901592157c588309c83c03f7b5 /gtk/gtksizegroup.h
parent22d4515d9a062ca83a51baf5c764d8ffc4c3d42b (diff)
downloadgtk+-d5c3fb5231cf1819d97335b3373a7c6207340192.tar.gz
gtksizegroup: Move public members to private structure
Diffstat (limited to 'gtk/gtksizegroup.h')
-rw-r--r--gtk/gtksizegroup.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/gtk/gtksizegroup.h b/gtk/gtksizegroup.h
index a41f8958ae..ec39c710d8 100644
--- a/gtk/gtksizegroup.h
+++ b/gtk/gtksizegroup.h
@@ -38,6 +38,7 @@ G_BEGIN_DECLS
typedef struct _GtkSizeGroup GtkSizeGroup;
+typedef struct _GtkSizeGroupPriv GtkSizeGroupPriv;
typedef struct _GtkSizeGroupClass GtkSizeGroupClass;
struct _GtkSizeGroup
@@ -45,15 +46,7 @@ struct _GtkSizeGroup
GObject parent_instance;
/* <private> */
- GSList *GSEAL (widgets);
-
- guint8 GSEAL (mode);
-
- guint GSEAL (have_width) : 1;
- guint GSEAL (have_height) : 1;
- guint GSEAL (ignore_hidden) : 1;
-
- GtkRequisition GSEAL (requisition);
+ GtkSizeGroupPriv *priv;
};
struct _GtkSizeGroupClass