summaryrefslogtreecommitdiff
path: root/gtk/gtkfixed.h
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2018-07-05 19:06:48 +0200
committerTimm Bäder <mail@baedert.org>2018-07-05 19:08:19 +0200
commitda8050979e7f5519a597b5a818790eb3841fe8ff (patch)
tree64a7fd63930fe08df425f96a22cbf0c380e9fdc5 /gtk/gtkfixed.h
parent4dd1ff6dd25dfbf9f2e76abd88a9079e31e0c322 (diff)
downloadgtk+-da8050979e7f5519a597b5a818790eb3841fe8ff.tar.gz
fixed: Remove child list
Use the child widget list from GtkWidget and attach x/y positions via a qdata.
Diffstat (limited to 'gtk/gtkfixed.h')
-rw-r--r--gtk/gtkfixed.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk/gtkfixed.h b/gtk/gtkfixed.h
index 4caeeb94b0..74e88d9d3b 100644
--- a/gtk/gtkfixed.h
+++ b/gtk/gtkfixed.h
@@ -44,7 +44,6 @@ G_BEGIN_DECLS
typedef struct _GtkFixed GtkFixed;
typedef struct _GtkFixedClass GtkFixedClass;
-typedef struct _GtkFixedChild GtkFixedChild;
struct _GtkFixed
{
@@ -62,14 +61,6 @@ struct _GtkFixedClass
void (*_gtk_reserved4) (void);
};
-struct _GtkFixedChild
-{
- GtkWidget *widget;
- gint x;
- gint y;
-};
-
-
GDK_AVAILABLE_IN_ALL
GType gtk_fixed_get_type (void) G_GNUC_CONST;
GDK_AVAILABLE_IN_ALL