summaryrefslogtreecommitdiff
path: root/gtk/gtkfixed.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-06-04 23:48:00 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:47 +0200
commit0991115ada766bfbaa1765a92b7478c83771095a (patch)
tree75a7b653ed1035276869200dd1b5597518aebad5 /gtk/gtkfixed.h
parent58030409d81520054a8d0e5720e6da22063e63d6 (diff)
downloadgtk+-0991115ada766bfbaa1765a92b7478c83771095a.tar.gz
gtkfixed: Move public members to private structure
Diffstat (limited to 'gtk/gtkfixed.h')
-rw-r--r--gtk/gtkfixed.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtkfixed.h b/gtk/gtkfixed.h
index 7f2fa96003..fc65f6cae5 100644
--- a/gtk/gtkfixed.h
+++ b/gtk/gtkfixed.h
@@ -44,8 +44,8 @@ G_BEGIN_DECLS
#define GTK_IS_FIXED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FIXED))
#define GTK_FIXED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FIXED, GtkFixedClass))
-
typedef struct _GtkFixed GtkFixed;
+typedef struct _GtkFixedPriv GtkFixedPriv;
typedef struct _GtkFixedClass GtkFixedClass;
typedef struct _GtkFixedChild GtkFixedChild;
@@ -53,7 +53,8 @@ struct _GtkFixed
{
GtkContainer container;
- GList *GSEAL (children);
+ /* <private> */
+ GtkFixedPriv *priv;
};
struct _GtkFixedClass