diff options
author | Timm Bäder <mail@baedert.org> | 2018-06-20 14:24:21 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2018-06-20 20:47:17 +0200 |
commit | daba1a7effb46a5b33db8cbcd881ba723b5603ba (patch) | |
tree | 55896d6aad07b000c84e29964aa33a933e578e60 /gtk/gtkfixed.h | |
parent | f26359db13cb101120b00e627d4c4c0070a4b47e (diff) | |
download | gtk+-daba1a7effb46a5b33db8cbcd881ba723b5603ba.tar.gz |
fixed: Remove priv pointer
Diffstat (limited to 'gtk/gtkfixed.h')
-rw-r--r-- | gtk/gtkfixed.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/gtkfixed.h b/gtk/gtkfixed.h index 7e2a07e0dd..4caeeb94b0 100644 --- a/gtk/gtkfixed.h +++ b/gtk/gtkfixed.h @@ -43,16 +43,12 @@ G_BEGIN_DECLS #define GTK_FIXED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FIXED, GtkFixedClass)) typedef struct _GtkFixed GtkFixed; -typedef struct _GtkFixedPrivate GtkFixedPrivate; typedef struct _GtkFixedClass GtkFixedClass; typedef struct _GtkFixedChild GtkFixedChild; struct _GtkFixed { - GtkContainer container; - - /*< private >*/ - GtkFixedPrivate *priv; + GtkContainer parent_instance; }; struct _GtkFixedClass |