summaryrefslogtreecommitdiff
path: root/gtk/gtkexpander.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-05-26 22:50:03 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-05-26 22:50:03 -0400
commit53010fd0b37f912e417c6ed923b70d7c69c950e7 (patch)
tree5a3f87c9df4075c35ee55490ab627f3bb2678c53 /gtk/gtkexpander.c
parent58bad1d409874f5a6f4d72c0b96ac420a4f3d6b6 (diff)
downloadgtk+-53010fd0b37f912e417c6ed923b70d7c69c950e7.tar.gz
expander: Make final
Diffstat (limited to 'gtk/gtkexpander.c')
-rw-r--r--gtk/gtkexpander.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c
index cba7916c12..43b48ce9e4 100644
--- a/gtk/gtkexpander.c
+++ b/gtk/gtkexpander.c
@@ -145,6 +145,20 @@ enum
PROP_RESIZE_TOPLEVEL
};
+typedef struct _GtkExpanderClass GtkExpanderClass;
+
+struct _GtkExpander
+{
+ GtkContainer parent_instance;
+};
+
+struct _GtkExpanderClass
+{
+ GtkContainerClass parent_class;
+
+ void (* activate) (GtkExpander *expander);
+};
+
typedef struct _GtkExpanderPrivate GtkExpanderPrivate;
struct _GtkExpanderPrivate
{