diff options
author | Benjamin Otte <otte@redhat.com> | 2019-11-22 08:29:32 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2019-11-22 17:42:32 +0100 |
commit | 4fbb0d7ce4bab13b7bef358f15542ecca03eda9c (patch) | |
tree | ac224c9177eb852f3b5337ebb3d945423aa84c39 /gtk/gtkbuilder.h | |
parent | 245fdc8b3860aef4af7ce228c1503b1d640e7219 (diff) | |
download | gtk+-4fbb0d7ce4bab13b7bef358f15542ecca03eda9c.tar.gz |
builder: Make the struct private
We don't want anyone to subclass it - if we want to allow bindings to
extend GtkBuilder, we will be using delegate objects/functions for it.
Diffstat (limited to 'gtk/gtkbuilder.h')
-rw-r--r-- | gtk/gtkbuilder.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gtk/gtkbuilder.h b/gtk/gtkbuilder.h index 4032f42928..3bc752852b 100644 --- a/gtk/gtkbuilder.h +++ b/gtk/gtkbuilder.h @@ -93,20 +93,6 @@ typedef enum GDK_AVAILABLE_IN_ALL GQuark gtk_builder_error_quark (void); -struct _GtkBuilder -{ - GObject parent_instance; -}; - -struct _GtkBuilderClass -{ - GObjectClass parent_class; - - /*< private >*/ - - gpointer padding[8]; -}; - GDK_AVAILABLE_IN_ALL GType gtk_builder_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_ALL |