summaryrefslogtreecommitdiff
path: root/gtk/gtkwidget.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-09-12 18:36:32 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-09-12 18:36:32 -0400
commitf1414a125f006b1131c89e9b723f90f842e95a20 (patch)
tree34c75f40234174ea92a63afdd970d9c4b31ddac3 /gtk/gtkwidget.h
parent51a1bc21af92d866a96c15b538d34708f8c91045 (diff)
downloadgtk+-f1414a125f006b1131c89e9b723f90f842e95a20.tar.gz
Move GtkWidgetAuxInfo struct to private headers
There's no API returning such a struct, it is entirely internal. Therefore, don't expose it in public headers.
Diffstat (limited to 'gtk/gtkwidget.h')
-rw-r--r--gtk/gtkwidget.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/gtk/gtkwidget.h b/gtk/gtkwidget.h
index a2366d0092..c725fcba8c 100644
--- a/gtk/gtkwidget.h
+++ b/gtk/gtkwidget.h
@@ -66,7 +66,6 @@ typedef enum
typedef struct _GtkWidgetPrivate GtkWidgetPrivate;
typedef struct _GtkWidgetClass GtkWidgetClass;
typedef struct _GtkWidgetClassPrivate GtkWidgetClassPrivate;
-typedef struct _GtkWidgetAuxInfo GtkWidgetAuxInfo;
/**
* GtkAllocation:
@@ -609,25 +608,6 @@ struct _GtkWidgetClass
void (*_gtk_reserved7) (void);
};
-/**
- * GtkWidgetAuxInfo:
- * @width: the widget’s width
- * @height: the widget’s height
- * @halign: the widget’s horizontal alignment
- * @valign: the widget’s horizontal alignment
- * @margin: the widget’s #GtkBorder margins
- *
- */
-struct _GtkWidgetAuxInfo
-{
- gint width;
- gint height;
-
- guint halign : 4;
- guint valign : 4;
-
- GtkBorder margin;
-};
GDK_AVAILABLE_IN_ALL
GType gtk_widget_get_type (void) G_GNUC_CONST;