From 53010fd0b37f912e417c6ed923b70d7c69c950e7 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 26 May 2019 22:50:03 -0400 Subject: expander: Make final --- gtk/gtkexpander.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'gtk/gtkexpander.c') 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 { -- cgit v1.2.1